functor (Ord : OrderedType->
  sig
    type key = Ord.t
    type +'a t
    val empty : 'a t
    val is_empty : 'a t -> bool
    val add : key -> '-> 'a t -> 'a t
    val find : key -> 'a t -> 'a
    val remove : key -> 'a t -> 'a t
    val mem : key -> 'a t -> bool
    val iter : (key -> '-> unit) -> 'a t -> unit
    val map : ('-> 'b) -> 'a t -> 'b t
    val mapi : (key -> '-> 'b) -> 'a t -> 'b t
    val fold : (key -> '-> '-> 'b) -> 'a t -> '-> 'b
    val compare : ('-> '-> int) -> 'a t -> 'a t -> int
    val equal : ('-> '-> bool) -> 'a t -> 'a t -> bool
  end