module Make: functor (H : HashedType) -> sig end| Parameters: |
|
type key = H.t
type hashtbl = key Hashcons.t
type t = hashtbl
val create : int -> 'a tval clear : 'a t -> unitval add : 'a t -> int -> 'a Hashcons.hashed -> unit| Parameters: |
|
val find : H.t t -> H.t -> int -> H.t Hashcons.hashed| Parameters: |
|
val hashcons : H.t t -> H.t -> H.t Hashcons.hashed| Parameters: |
|
val mem : H.t t -> H.t -> bool| Parameters: |
|
val iter : ('a Hashcons.hashed -> 'b) -> 'a t -> unitval stat : 'a t -> unit