Parameters
Signature
include MoreLabels.Hashtbl.S with type key = Key.t
val remove : 'a t -> key -> unitval find_opt : 'a t -> key -> 'a optionval find_all : 'a t -> key -> 'a listval replace : 'a t -> key:key -> data:'a -> unitval mem : 'a t -> key -> boolval iter : f:(key:key -> data:'a -> unit) -> 'a t -> unitval filter_map_inplace : f:(key:key -> data:'a -> 'a option) -> 'a t -> unitval 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 add : 'a t -> key -> 'a -> unitval find : 'a t -> key -> 'a optionval find_exn : 'a t -> key -> 'aval find_or_add : 'a t -> key -> f:(key -> 'a) -> 'aval fold : 'a t -> init:'b -> f:('a -> 'b -> 'b) -> 'bval foldi : 'a t -> init:'b -> f:(key -> 'a -> 'b -> 'b) -> 'bval of_list_exn : (key * 'a) list -> 'a t