Parameters
Signature
val add : 'a t -> key -> 'a -> unitval remove : 'a t -> key -> unitval find : 'a t -> key -> 'aval find_opt : 'a t -> key -> 'a optionval find_all : 'a t -> key -> 'a listval replace : 'a t -> key -> 'a -> unitval mem : 'a t -> key -> boolval iter : (key -> 'a -> unit) -> 'a t -> unitval filter_map_inplace : (key -> 'a -> 'a option) -> 'a t -> unitval fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'bval stats : 'a t -> Stdlib__hashtbl.statisticsval to_seq_values : 'a t -> 'a Seq.tval add_seq : 'a t -> (key * 'a) Seq.t -> unitval replace_seq : 'a t -> (key * 'a) Seq.t -> unitval create_from : 'a t -> 'b tval create : ?size:int -> unit -> 'a tval is_empty : 'a t -> boolval find_and_raise : key -> 'a t -> string -> 'aval map : (key -> 'a -> key * 'b) -> 'a t -> 'b tval add : key -> 'a -> 'a t -> 'a tval remove : key -> 'a t -> 'a tval mem : key -> 'a t -> boolval find : key -> 'a t -> 'a