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

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