val create : ?random:bool -> int -> ('a, 'b) tval clear : ('a, 'b) t -> unitval reset : ('a, 'b) t -> unitval copy : ('a, 'b) t -> ('a, 'b) tval add : ('a, 'b) t -> 'a -> 'b -> unitval find : ('a, 'b) t -> 'a -> 'bval find_opt : ('a, 'b) t -> 'a -> 'b optionval find_all : ('a, 'b) t -> 'a -> 'b listval mem : ('a, 'b) t -> 'a -> boolval remove : ('a, 'b) t -> 'a -> unitval replace : ('a, 'b) t -> 'a -> 'b -> unitval iter : ('a -> 'b -> unit) -> ('a, 'b) t -> unitval filter_map_inplace : ('a -> 'b -> 'b option) -> ('a, 'b) t -> unitval fold : ('a -> 'b -> 'c -> 'c) -> ('a, 'b) t -> 'c -> 'cval length : ('a, 'b) t -> intval randomize : unit -> unitval is_randomized : unit -> boolval rebuild : ?random:bool -> ('a, 'b) t -> ('a, 'b) ttype statistics = {num_bindings : int;num_buckets : int;max_bucket_length : int;bucket_histogram : int array;
}val to_seq : ('a, 'b) t -> ('a * 'b) Seq.tval to_seq_keys : ('a, 'b) t -> 'a Seq.tval to_seq_values : ('a, 'b) t -> 'b Seq.tval add_seq : ('a, 'b) t -> ('a * 'b) Seq.t -> unitval replace_seq : ('a, 'b) t -> ('a * 'b) Seq.t -> unitval of_seq : ('a * 'b) Seq.t -> ('a, 'b) tmodule type S = sig ... endmodule Make (H : sig ... end) : sig ... endval seeded_hash : int -> 'a -> intval hash_param : int -> int -> 'a -> intval seeded_hash_param : int -> int -> int -> 'a -> intval sexp_of_t :
('a -> Sexplib0__.Sexp.t) ->
('b -> Sexplib0__.Sexp.t) ->
('a, 'b) Hashtbl.t ->
Sexplib0__.Sexp.tval t_of_sexp :
(Sexplib0__.Sexp.t -> 'a) ->
(Sexplib0__.Sexp.t -> 'b) ->
Sexplib0__.Sexp.t ->
('a, 'b) Hashtbl.t