Ephemeron.K2Ephemerons with two keys.
val make : 'k1 -> 'k2 -> 'd -> ('k1, 'k2, 'd) tSame as Ephemeron.K1.make
val query : ('k1, 'k2, 'd) t -> 'k1 -> 'k2 -> 'd optionSame as Ephemeron.K1.query
module Make
  (H1 : Hashtbl.HashedType)
  (H2 : Hashtbl.HashedType) : 
  S with type key = H1.t * H2.tFunctor building an implementation of a weak hash table
module MakeSeeded
  (H1 : Hashtbl.SeededHashedType)
  (H2 : Hashtbl.SeededHashedType) : 
  SeededS with type key = H1.t * H2.tFunctor building an implementation of a weak hash table. The seed is similar to the one of Hashtbl.MakeSeeded.
module Bucket : sig ... end