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 -> 'a Hashhe.S.t
val clear : 'a Hashhe.S.t -> unit
val copy : 'a Hashhe.S.t -> 'a Hashhe.S.t
val add : 'a Hashhe.S.t -> Hashhe.S.key -> 'a -> unit
val remove : 'a Hashhe.S.t -> Hashhe.S.key -> unit
val find : 'a Hashhe.S.t -> Hashhe.S.key -> 'a
val find_all : 'a Hashhe.S.t -> Hashhe.S.key -> 'a list
val replace : 'a Hashhe.S.t -> Hashhe.S.key -> 'a -> unit
val mem : 'a Hashhe.S.t -> Hashhe.S.key -> bool
val iter : (Hashhe.S.key -> 'a -> unit) -> 'a Hashhe.S.t -> unit
val fold : (Hashhe.S.key -> 'a -> 'b -> 'b) -> 'a Hashhe.S.t -> 'b -> 'b
val map : (Hashhe.S.key -> 'a -> 'b) -> 'a Hashhe.S.t -> 'b Hashhe.S.t
val length : 'a 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 -> 'a -> unit) ->
Format.formatter -> 'a Hashhe.S.t -> unit
end