module type HASHTBL =Sub-signature ofsig
..end
Hashtbl.S
.type
key
type 'a
t
val create : int -> 'a t
val iter : (key -> 'a -> unit) -> 'a t -> unit
val fold : (key -> 'a -> 'b -> 'b) -> 'a t -> 'b -> 'b
val add : 'a t -> key -> 'a -> unit
val replace : 'a t -> key -> 'a -> unit
val length : 'a t -> int
val find_all : 'a t -> key -> 'a list