Parameters
Signature
type key = X.ttype 'a t = 'a Stdlib__hashtbl.Make(X).t
val clear : 'a t -> unitval reset : 'a t -> unitval copy : 'a t -> 'a tval find_opt : 'a t -> key -> 'a optionval find_all : 'a t -> key -> 'a listval replace : 'a t -> key -> 'a -> unitval 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 length : 'a t -> intval stats : 'a t -> Stdlib__hashtbl.statisticsval to_seq : 'a t -> (key * 'a) Stdlib.Seq.tval to_seq_keys : 'a t -> key Stdlib.Seq.tval to_seq_values : 'a t -> 'a Stdlib.Seq.tval add_seq : 'a t -> (key * 'a) Stdlib.Seq.t -> unitval replace_seq : 'a t -> (key * 'a) Stdlib.Seq.t -> unitval of_seq : (key * 'a) Stdlib.Seq.t -> 'a t
type 'a return = unit
val empty : 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