函子 (H : SeededHashedType) ->
sig
类型 key = H.t
类型 !'a t
值 create : ?random:bool -> 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
值 iter : (key -> 'a -> unit) -> 'a t -> unit
值 filter_map_inplace : (key -> 'a -> 'a option) -> 'a t -> unit
值 fold : (key -> 'a -> 'acc -> 'acc) -> 'a t -> 'acc -> 'acc
值 length : 'a t -> int
值 stats : 'a t -> statistics
值 to_seq : 'a t -> (key * 'a) Seq.t
值 to_seq_keys : 'a t -> key Seq.t
值 to_seq_values : 'a t -> 'a Seq.t
值 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
end