Module Blocks.Make_Hashtbl
Parameters
Signature
val 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 stats : 'a t -> Stdlib__hashtbl.statisticsval 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