sig
  type key
  type 'a t = (Hashhe.S.key, 'a) Hashhe.hashtbl
  module Hash :
    sig type t = key val equal : t -> t -> bool val hash : t -> int end
  val create : int -> 'Hashhe.S.t
  val clear : 'Hashhe.S.t -> unit
  val copy : 'Hashhe.S.t -> 'Hashhe.S.t
  val add : 'Hashhe.S.t -> Hashhe.S.key -> '-> unit
  val remove : 'Hashhe.S.t -> Hashhe.S.key -> unit
  val find : 'Hashhe.S.t -> Hashhe.S.key -> 'a
  val find_all : 'Hashhe.S.t -> Hashhe.S.key -> 'a list
  val replace : 'Hashhe.S.t -> Hashhe.S.key -> '-> unit
  val mem : 'Hashhe.S.t -> Hashhe.S.key -> bool
  val iter : (Hashhe.S.key -> '-> unit) -> 'Hashhe.S.t -> unit
  val fold : (Hashhe.S.key -> '-> '-> 'b) -> 'Hashhe.S.t -> '-> 'b
  val map : (Hashhe.S.key -> '-> 'b) -> 'Hashhe.S.t -> 'Hashhe.S.t
  val length : 'Hashhe.S.t -> int
  val print :
    ?first:(unit, Format.formatter, unit) Pervasives.format ->
    ?sep:(unit, Format.formatter, unit) Pervasives.format ->
    ?last:(unit, Format.formatter, unit) Pervasives.format ->
    ?firstbind:(unit, Format.formatter, unit) Pervasives.format ->
    ?sepbind:(unit, Format.formatter, unit) Pervasives.format ->
    ?lastbind:(unit, Format.formatter, unit) Pervasives.format ->
    (Format.formatter -> Hashhe.S.key -> unit) ->
    (Format.formatter -> '-> unit) ->
    Format.formatter -> 'Hashhe.S.t -> unit
end