Module Stdlib.MoreLabels.Hashtbl

type ('a, 'b) t = ('a'bStdlib.Hashtbl.t
val create : ?random:bool -> int -> ('a'bt
val clear : ('a'bt -> unit
val reset : ('a'bt -> unit
val copy : ('a'bt -> ('a'bt
val add : ('a'bt -> key:'a -> data:'b -> unit
val find : ('a'bt -> 'a -> 'b
val find_opt : ('a'bt -> 'a -> 'b option
val find_all : ('a'bt -> 'a -> 'b list
val mem : ('a'bt -> 'a -> bool
val remove : ('a'bt -> 'a -> unit
val replace : ('a'bt -> key:'a -> data:'b -> unit
val iter : f:(key:'a -> data:'b -> unit) -> ('a'bt -> unit
val filter_map_inplace : f:(key:'a -> data:'b -> 'b option) -> ('a'bt -> unit
val fold : f:(key:'a -> data:'b -> 'c -> 'c) -> ('a'bt -> init:'c -> 'c
val length : ('a'bt -> int
val randomize : unit -> unit
val is_randomized : unit -> bool
type statistics = Stdlib.Hashtbl.statistics
val stats : ('a'bt -> statistics
module type HashedType = Stdlib.Hashtbl.HashedType
module type SeededHashedType = Stdlib.Hashtbl.SeededHashedType
module type S : sig ... end
module type SeededS : sig ... end
module Make : functor (H : HashedType) -> S with type key = H.t and type 'a t = 'a Stdlib.Hashtbl.Make(H).t
module MakeSeeded : functor (H : SeededHashedType) -> SeededS with type key = H.t and type 'a t = 'a Stdlib.Hashtbl.MakeSeeded(H).t
val hash : 'a -> int
val seeded_hash : int -> 'a -> int
val hash_param : int -> int -> 'a -> int
val seeded_hash_param : int -> int -> int -> 'a -> int