functor (K : Hashtbl.HashedType->
  functor (E : Hashtbl.HashedType->
    sig
      type key = K.t
      type elt = E.t
      type t
      val length : t -> int
      val create : int -> t
      val clear : t -> unit
      val copy : t -> t
      val mem : t -> key -> bool
      val mem_inv : t -> elt -> bool
      val add : t -> key -> elt -> unit
      val find : t -> key -> elt
      val find_inv : t -> elt -> key
      val remove_key : t -> key -> unit
      val remove_elt : t -> elt -> unit
      val replace : t -> key -> elt -> unit
      val iter : (key -> elt -> unit) -> t -> unit
      val fold : (key -> elt -> '-> 'a) -> t -> '-> 'a
    end

Hosted by the SourceForge.net Logo* web site.
*Other names and brands may be claimed as the property of others.