sig
  type key
  type 'a t
  val is_empty : 'a t -> bool
  val mem : 'a t -> key -> bool
  val find : 'a t -> key -> 'a
  val size : 'a t -> int
  val iter : (key -> '-> unit) -> 'a t -> unit
  val fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
  val empty : 'a t
  val add : 'a t -> key -> '-> 'a t
  val remove : 'a t -> key -> 'a t
end