sig
  type t
  val is_empty : t -> bool
  val subset : t -> t -> bool option
  val inter : t -> t -> t
  val union : t -> t -> t
  val compare : t -> t -> int
  val string_of : t -> string
  val normalize : t -> t
  val make_eq_lower : t -> t -> bool * t
  val make_eq_upper : t -> t -> bool * t
  val make_eq_eq : t -> t -> bool * t
end