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