val is_empty : 'a t -> boolval mem : string -> 'a t -> boolval add : string -> 'a -> 'a t -> 'a tval update : string -> ('a option -> 'a option) -> 'a t -> 'a tval singleton : string -> 'a -> 'a tval remove : string -> 'a t -> 'a tval merge :
(string -> 'a option -> 'b option -> 'c option) ->
'a t ->
'b t ->
'c tval union : (string -> 'a -> 'a -> 'a option) -> 'a t -> 'a t -> 'a tval compare : ('a -> 'a -> int) -> 'a t -> 'a t -> intval equal : ('a -> 'a -> bool) -> 'a t -> 'a t -> boolval iter : (string -> 'a -> unit) -> 'a t -> unitval fold : (string -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'bval for_all : (string -> 'a -> bool) -> 'a t -> boolval exists : (string -> 'a -> bool) -> 'a t -> boolval filter : (string -> 'a -> bool) -> 'a t -> 'a tval filter_map : (string -> 'a -> 'b option) -> 'a t -> 'b tval partition : (string -> 'a -> bool) -> 'a t -> 'a t * 'a tval cardinal : 'a t -> intval bindings : 'a t -> (string * 'a) listval min_binding_opt : 'a t -> (string * 'a) optionval max_binding_opt : 'a t -> (string * 'a) optionval choose_opt : 'a t -> (string * 'a) optionval split : string -> 'a t -> 'a t * 'a option * 'a tval find_opt : string -> 'a t -> 'a optionval find_first : (string -> bool) -> 'a t -> string * 'aval find_first_opt : (string -> bool) -> 'a t -> (string * 'a) optionval find_last : (string -> bool) -> 'a t -> string * 'aval find_last_opt : (string -> bool) -> 'a t -> (string * 'a) optionval map : ('a -> 'b) -> 'a t -> 'b tval mapi : (string -> 'a -> 'b) -> 'a t -> 'b tval to_seq : 'a t -> (string * 'a) Seq.tval to_rev_seq : 'a t -> (string * 'a) Seq.tval to_seq_from : string -> 'a t -> (string * 'a) Seq.tval add_seq : (string * 'a) Seq.t -> 'a t -> 'a tval of_seq : (string * 'a) Seq.t -> 'a tval min_binding : 'a t -> (string * 'a) optionval get_min_binding : 'a t -> string * 'aval max_binding : 'a t -> (string * 'a) optionval get_max_binding : 'a t -> string * 'aval choose : 'a t -> (string * 'a) optionval get_any_binding : 'a t -> string * 'aval find : string -> 'a t -> 'a optionval get : string -> 'a t -> 'aval of_list : (string * 'a) list -> 'a t