module String_trie:S
with type Key.t = String.t
with type Part.t = Char.t
module Key:sig
..end
module Part:sig
..end
type
t =
| |
Node of |
val create : unit -> t
val contains : t -> Key.t -> bool
val add : t -> Key.t -> unit
val remove : t -> Key.t -> unit
val render_as_regexp : t ->
capture_parts:bool -> to_quoted_string:(Part.t -> string) -> string