函子 (H1 : Hashtbl.SeededHashedType) (H2 : Hashtbl.SeededHashedType->
  sig
    类型 key = H1.t * H2.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 -> '-> 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 -> '-> 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