Parameters
Signature
include sig ... end
type !'a t = 'a Stdlib__Hashtbl.Make(X).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 -> 'acc -> 'acc) -> 'a t -> 'acc -> 'accval 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 tval 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