函子 (H : Hashtbl.HashedType) ->
sig
类型 key = H.t
类型 !'a t
值 create : int -> 'a t
值 clear : 'a t -> unit
值 reset : 'a t -> unit
值 copy : 'a t -> 'a t
值 add : 'a t -> key -> 'a -> unit
值 remove : 'a t -> key -> unit
值 find : 'a t -> key -> 'a
值 find_opt : 'a t -> key -> 'a option
值 find_all : 'a t -> key -> 'a list
值 replace : 'a t -> key -> 'a -> unit
值 mem : 'a t -> key -> bool
值 length : 'a t -> int
值 stats : 'a t -> Hashtbl.statistics
值 add_seq : 'a t -> (key * 'a) Seq.t -> unit
值 replace_seq : 'a t -> (key * 'a) Seq.t -> unit
值 of_seq : (key * 'a) Seq.t -> 'a t
值 clean : 'a t -> unit
值 stats_alive : 'a t -> Hashtbl.statistics
end