sig
  type ('a, 'b) hashtbl
  type 'a compare = { hash : '-> int; equal : '-> '-> bool; }
  type ('a, 'b) t = ('a, 'b) Hashhe.hashtbl
  val create : int -> ('a, 'b) Hashhe.t
  val clear : ('a, 'b) Hashhe.t -> unit
  val add : ('a, 'b) Hashhe.t -> '-> '-> unit
  val copy : ('a, 'b) Hashhe.t -> ('a, 'b) Hashhe.t
  val find : ('a, 'b) Hashhe.t -> '-> 'b
  val find_all : ('a, 'b) Hashhe.t -> '-> 'b list
  val mem : ('a, 'b) Hashhe.t -> '-> bool
  val remove : ('a, 'b) Hashhe.t -> '-> unit
  val replace : ('a, 'b) Hashhe.t -> '-> '-> unit
  val iter : ('-> '-> unit) -> ('a, 'b) Hashhe.t -> unit
  val fold : ('-> '-> '-> 'c) -> ('a, 'b) Hashhe.t -> '-> 'c
  val map : ('-> '-> 'c) -> ('a, 'b) Hashhe.t -> ('a, 'c) Hashhe.t
  val length : ('a, 'b) Hashhe.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 -> '-> unit) ->
    (Format.formatter -> '-> unit) ->
    Format.formatter -> ('a, 'b) Hashhe.t -> unit
  module type HashedType =
    sig
      type t
      val equal : Hashhe.HashedType.t -> Hashhe.HashedType.t -> bool
      val hash : Hashhe.HashedType.t -> int
    end
  module type S =
    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
  module Make :
    functor (H : HashedType->
      sig
        type key = H.t
        type 'a t = (key, 'a) hashtbl
        module Hash :
          sig type t = key val equal : t -> t -> bool val hash : t -> int end
        val create : int -> 'a t
        val clear : 'a t -> unit
        val copy : 'a t -> 'a t
        val add : 'a t -> key -> '-> unit
        val remove : 'a t -> key -> unit
        val find : 'a t -> key -> 'a
        val find_all : 'a t -> key -> 'a list
        val replace : 'a t -> key -> '-> unit
        val mem : 'a t -> key -> bool
        val iter : (key -> '-> unit) -> 'a t -> unit
        val fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
        val map : (key -> '-> 'b) -> 'a t -> 'b t
        val length : 'a t -> int
        val print :
          ?first:(unit, Format.formatter, unit) format ->
          ?sep:(unit, Format.formatter, unit) format ->
          ?last:(unit, Format.formatter, unit) format ->
          ?firstbind:(unit, Format.formatter, unit) format ->
          ?sepbind:(unit, Format.formatter, unit) format ->
          ?lastbind:(unit, Format.formatter, unit) format ->
          (Format.formatter -> key -> unit) ->
          (Format.formatter -> '-> unit) ->
          Format.formatter -> 'a t -> unit
      end
  val hash : '-> int
  external hash_param : int -> int -> '-> int = "caml_hash_univ_param"
    "noalloc"
  val stdcompare : 'Hashhe.compare
  module Compare :
    sig
      val resize : 'Hashhe.compare -> ('a, 'b) Hashhe.hashtbl -> unit
      val add :
        'Hashhe.compare -> ('a, 'b) Hashhe.hashtbl -> '-> '-> unit
      val remove : 'Hashhe.compare -> ('a, 'b) Hashhe.hashtbl -> '-> unit
      val find : 'Hashhe.compare -> ('a, 'b) Hashhe.hashtbl -> '-> 'b
      val find_all :
        'Hashhe.compare -> ('a, 'b) Hashhe.hashtbl -> '-> 'b list
      val replace :
        'Hashhe.compare -> ('a, 'b) Hashhe.hashtbl -> '-> '-> unit
      val mem : 'Hashhe.compare -> ('a, 'b) Hashhe.hashtbl -> '-> bool
    end
end