sig
  type key = int
  type 'a t
  val size : 'a t -> int
  val create : '-> 'a t
  val is_empty : 'a t -> bool
  val mem : 'a t -> key -> bool
  val find : 'a t -> key -> 'a
  val add : 'a t -> key -> '-> unit
  val replace : 'a t -> key -> '-> unit
  val copy : 'a t -> 'a t
  val iter : (key -> '-> unit) -> 'a t -> unit
  val iter_const : ('-> key -> '-> unit) -> '-> 'b t -> unit
  val fold : ('-> key -> '-> 'a) -> '-> 'b t -> 'a
  val fold_const : ('-> '-> key -> '-> 'b) -> '-> '-> 'c t -> 'b
  val modify : ('-> 'a) -> 'a t -> unit
  val modify_const : ('-> '-> 'b) -> '-> 'b t -> unit
  val set_all : 'a t -> '-> unit
end

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