sig
  type 'a compare =
    'Hashhe.compare = {
    hash : '-> int;
    equal : '-> '-> bool;
  }
  type ('a, 'b) t = {
    compare : 'Hashhe.compare;
    mutable hashtbl : ('a, 'b) Hashhe.t;
  }
  val stdcompare : 'PHashhe.compare
  val create : ('-> int) -> ('-> '-> bool) -> int -> ('a, 'b) PHashhe.t
  val create_compare : 'Hashhe.compare -> int -> ('a, 'b) PHashhe.t
  val clear : ('a, 'b) PHashhe.t -> unit
  val add : ('a, 'b) PHashhe.t -> '-> '-> unit
  val remove : ('a, 'b) PHashhe.t -> '-> unit
  val find : ('a, 'b) PHashhe.t -> '-> 'b
  val find_all : ('a, 'b) PHashhe.t -> '-> 'b list
  val replace : ('a, 'b) PHashhe.t -> '-> '-> unit
  val mem : ('a, 'b) PHashhe.t -> '-> bool
  val copy : ('a, 'b) PHashhe.t -> ('a, 'b) PHashhe.t
  val iter : ('-> '-> unit) -> ('a, 'b) PHashhe.t -> unit
  val fold : ('-> '-> '-> 'c) -> ('a, 'b) PHashhe.t -> '-> 'c
  val map : ('-> '-> 'c) -> ('a, 'b) PHashhe.t -> ('a, 'c) PHashhe.t
  val length : ('a, 'b) PHashhe.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) PHashhe.t -> unit
end