package stdcompat
-
stdcompat
Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
type ('a, 'b) t = ('a, 'b) Hashtbl.t
val clear : ('a, 'b) t -> unit
val add : ('a, 'b) t -> 'a -> 'b -> unit
val find : ('a, 'b) t -> 'a -> 'b
val find_all : ('a, 'b) t -> 'a -> 'b list
val mem : ('a, 'b) t -> 'a -> bool
val remove : ('a, 'b) t -> 'a -> unit
val replace : ('a, 'b) t -> 'a -> 'b -> unit
val iter : ('a -> 'b -> unit) -> ('a, 'b) t -> unit
val fold : ('a -> 'b -> 'c -> 'c) -> ('a, 'b) t -> 'c -> 'c
val length : ('a, 'b) t -> int
module type HashedType = Hashtbl.HashedType
val create : ?random:bool -> int -> ('a, 'b) t
val reset : ('a, 'b) t -> unit
val stats : ('a, 'b) t -> statistics
val filter_map_inplace : ('a -> 'b -> 'b option) -> ('a, 'b) t -> unit
val find_opt : ('a, 'b) t -> 'a -> 'b option
module type S = sig ... end
module Make (H : HashedType) : sig ... end
module type SeededHashedType = sig ... end
module type SeededS = sig ... end
module MakeSeeded (H : SeededHashedType) : sig ... end