Stdcompat.Hashtbltype ('a, 'b) t = ('a, 'b) Hashtbl.tAlias for Hashtbl.t
type statistics =
num_bindings: int ;
num_buckets: int ;
max_bucket_length: int ;
bucket_histogram: int array
module type HashedType = sig ... endAlias for Hashtbl.HashedType
module type S = sig ... endmodule type S = sig type key type !'a t val create : int -> 'a t val clear : 'a t -> unit val reset : 'a t -> unit val copy : 'a t -> 'a t val add : 'a t -> key -> 'a -> unit val remove : 'a t -> key -> unit val find : 'a t -> key -> 'a val find_opt : 'a t -> key -> 'a option val find_all : 'a t -> key -> 'a list val replace : 'a t -> key -> 'a -> unit val mem : 'a t -> key -> bool val iter : (key -> 'a -> unit) -> 'a t -> unit val filter_map_inplace : (key -> 'a -> 'a option) -> 'a t -> unit val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b val length : 'a t -> int val stats : 'a t -> statistics val to_seq : 'a t -> (key * 'a) Seq.t val to_seq_keys : 'a t -> key Seq.t val to_seq_values : 'a t -> 'a Seq.t val add_seq : 'a t -> (key * 'a) Seq.t -> unit val replace_seq : 'a t -> (key * 'a) Seq.t -> unit val of_seq : (key * 'a) Seq.t -> 'a t end
module Make = Hashtbl.Makemodule type SeededHashedType = sig ... endmodule type SeededS = sig ... endmodule type SeededS = sig type key type !'a t val create : ?random:bool -> int -> 'a t val clear : 'a t -> unit val reset : 'a t -> unit val copy : 'a t -> 'a t val add : 'a t -> key -> 'a -> unit val remove : 'a t -> key -> unit val find : 'a t -> key -> 'a val find_opt : 'a t -> key -> 'a option val find_all : 'a t -> key -> 'a list val replace : 'a t -> key -> 'a -> unit val mem : 'a t -> key -> bool val iter : (key -> 'a -> unit) -> 'a t -> unit val filter_map_inplace : (key -> 'a -> 'a option) -> 'a t -> unit val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b val length : 'a t -> int val stats : 'a t -> statistics val to_seq : 'a t -> (key * 'a) Seq.t val to_seq_keys : 'a t -> key Seq.t val to_seq_values : 'a t -> 'a Seq.t val add_seq : 'a t -> (key * 'a) Seq.t -> unit val replace_seq : 'a t -> (key * 'a) Seq.t -> unit val of_seq : (key * 'a) Seq.t -> 'a t end
module MakeSeeded (M : SeededHashedType) : sig ... endval find_opt : ('a, 'b) t -> 'a -> 'b optionval filter_map_inplace : ('a -> 'b -> 'b option) -> ('a, 'b) t -> unitval filter_map_inplace : ('a -> 'b -> 'b option) -> ('a, 'b) t -> unit
val create : ?random:bool -> int -> ('a, 'b) tval reset : ('a, 'b) t -> unitval stats : ('a, 'b) t -> statisticsval length : ('a, 'b) t -> intval clear : ('a, 'b) t -> unitAlias for Hashtbl.clear
Alias for Hashtbl.copy
val add : ('a, 'b) t -> 'a -> 'b -> unitAlias for Hashtbl.add
val find : ('a, 'b) t -> 'a -> 'bAlias for Hashtbl.find
val find_all : ('a, 'b) t -> 'a -> 'b listAlias for Hashtbl.find_all
val mem : ('a, 'b) t -> 'a -> boolAlias for Hashtbl.mem
val remove : ('a, 'b) t -> 'a -> unitAlias for Hashtbl.remove
val replace : ('a, 'b) t -> 'a -> 'b -> unitAlias for Hashtbl.replace
val iter : ('a -> 'b -> unit) -> ('a, 'b) t -> unitAlias for Hashtbl.iter
val fold : ('a -> 'b -> 'c -> 'c) -> ('a, 'b) t -> 'c -> 'cAlias for Hashtbl.fold
Alias for Hashtbl.hash
external hash_param : int -> int -> 'a -> int = "caml_hash_univ_param" "noalloc"
external hash_param : int -> int -> 'a -> int = "hash_univ_param" "noalloc"