functor (I : IndexedType->
  sig
    type elt = I.t
    type t
    val create : unit -> t
    val size : t -> int
    val is_empty : t -> bool
    val mem : t -> elt -> bool
    val add : t -> elt -> unit
    val remove : t -> elt -> unit
    val clear : t -> unit
    val iter : (elt -> unit) -> t -> unit
    val iter_const : ('-> elt -> unit) -> '-> t -> unit
    val fold : ('-> elt -> 'a) -> '-> t -> 'a
    val fold_const : ('-> '-> elt -> 'b) -> '-> '-> t -> 'b
  end

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