module Make:
| Parameters: |
|
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