函子 Ephemeron.K1.Make

module Make: 
functor (H : Hashtbl.HashedType-> Ephemeron.S with type key = H.t

构建弱哈希表的实现

参数
H : Hashtbl.HashedType

提供与普通哈希表相同的接口。但是由于绑定是弱绑定,即使 mem h k 为真,后续的 find h k 可能会引发 Not_found,因为垃圾收集器可能在这两者之间运行。

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 length : 'a t -> int
val stats : 'a t -> Hashtbl.statistics
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
val clean : 'a t -> unit

删除所有失效的绑定。在自动调整大小过程中自动完成。

val stats_alive : 'a t -> Hashtbl.statistics

Hashtbl.SeededS.stats 相同,但只计算有效的绑定