include module type of struct include Stdlib.Hashtbl end
type (!'a, !'b) t = ('a, 'b) Stdlib__Hashtbl.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 -> 'acc -> 'acc) -> ('a, 'b) t -> 'acc -> 'accval length : ('a, 'b) t -> intval randomize : unit -> unitval is_randomized : unit -> boolval rebuild : ?random:bool -> ('a, 'b) t -> ('a, 'b) ttype statistics = Stdlib__Hashtbl.statistics = {num_bindings : int;num_buckets : int;max_bucket_length : int;bucket_histogram : int array;
}val to_seq : ('a, 'b) t -> ('a * 'b) Stdlib.Seq.tval to_seq_keys : ('a, 'b) t -> 'a Stdlib.Seq.tval to_seq_values : ('a, 'b) t -> 'b Stdlib.Seq.tval add_seq : ('a, 'b) t -> ('a * 'b) Stdlib.Seq.t -> unitval replace_seq : ('a, 'b) t -> ('a * 'b) Stdlib.Seq.t -> unitmodule type HashedType = sig ... endmodule type S = sig ... endmodule Make : sig ... endmodule type SeededHashedType = sig ... endmodule type SeededS = sig ... endmodule MakeSeeded : sig ... endval seeded_hash : int -> 'a -> intval hash_param : int -> int -> 'a -> intval seeded_hash_param : int -> int -> int -> 'a -> intval create : ?random:bool -> int -> ('a, 'b) Stdlib.Hashtbl.tval of_seq : ('a * 'b) Stdlib.Seq.t -> ('a, 'b) Stdlib.Hashtbl.t