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 : 'a t -> string * 'aval min_binding_opt : 'a t -> (string * 'a) optionval max_binding : 'a t -> string * 'aval max_binding_opt : 'a t -> (string * 'a) optionval choose : 'a t -> string * 'aval choose_opt : 'a t -> (string * 'a) optionval split : string -> 'a t -> 'a t * 'a option * 'a tval find : string -> 'a t -> 'aval 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 of_list : (string * 'a) list -> 'a tval add_to_list : string -> 'a -> 'a list t -> 'a list tval add_to_set :
(module Stdlib_set.S with type elt = 'a and type t = 'set) ->
string ->
'a ->
'set t ->
'set tval pp_dump_string_map : string t Fmt.t