Module type Trie.S

module type S = sig .. end

module Key: sig .. end
module Part: sig .. end
type t = 
| Node of (bool * t) Part.Table.t
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