sig
  type 'a t
  type 'a bound_ = 'a
  val create : 'a bound_ -> 'a bound_ -> 'a t
  val empty : 'a t
  val intersect : 'a t -> 'a t -> 'a t
  val is_empty : 'a t -> bool
  val is_empty_or_singleton : 'a t -> bool
  val bounds : 'a t -> ('a bound_ * 'a bound_) option
  val lbound : 'a t -> 'a bound_ option
  val ubound : 'a t -> 'a bound_ option
  val bounds_exn : 'a t -> 'a bound_ * 'a bound_
  val lbound_exn : 'a t -> 'a bound_
  val ubound_exn : 'a t -> 'a bound_
  val contains : 'a t -> 'a bound_ -> bool
  val compare_value :
    'a t -> 'a bound_ -> [ `Above | `Below | `Interval_is_empty | `Within ]
  val bound : 'a t -> 'a bound_ -> 'a bound_ option
  val is_superset : 'a t -> of_:'a t -> bool
  val is_subset : 'a t -> of_:'a t -> bool
  val map : f:('a bound_ -> 'b bound_) -> 'a t -> 'b t
  val are_disjoint : 'a t list -> bool
  val are_disjoint_as_open_intervals : 'a t list -> bool
  val list_intersect : 'a t list -> 'a t list -> 'a t list
  val half_open_intervals_are_a_partition : 'a t list -> bool
  module Set :
    sig
      type 'a t
      val create : ('a bound_ * 'a bound_) list -> 'a t
      val create_from_intervals : 'a t list -> 'a t
      val contains : 'a t -> 'a bound_ -> bool
      val contains_set : container:'a t -> contained:'a t -> bool
      val ubound_exn : 'a t -> 'a bound_
      val lbound_exn : 'a t -> 'a bound_
      val ubound : 'a t -> 'a bound_ option
      val lbound : 'a t -> 'a bound_ option
      val t_of_sexp :
        (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'Interval_intf.S1.Set.t
      val sexp_of_t :
        ('-> Sexplib.Sexp.t) -> 'Interval_intf.S1.Set.t -> Sexplib.Sexp.t
      val bin_t :
        'Bin_prot.Type_class.t ->
        'Interval_intf.S1.Set.t Bin_prot.Type_class.t
      val bin_read_t :
        'Bin_prot.Unsafe_read_c.reader ->
        'Interval_intf.S1.Set.t Bin_prot.Read_ml.reader
      val bin_read_t_ :
        'Bin_prot.Unsafe_read_c.reader ->
        'Interval_intf.S1.Set.t Bin_prot.Unsafe_read_c.reader
      val bin_read_t__ :
        'Bin_prot.Unsafe_read_c.reader ->
        (int -> 'Interval_intf.S1.Set.t) Bin_prot.Unsafe_read_c.reader
      val bin_reader_t :
        'Bin_prot.Type_class.reader ->
        'Interval_intf.S1.Set.t Bin_prot.Type_class.reader
      val bin_size_t :
        'Bin_prot.Size.sizer ->
        'Interval_intf.S1.Set.t Bin_prot.Size.sizer
      val bin_write_t :
        'Bin_prot.Unsafe_write_c.writer ->
        'Interval_intf.S1.Set.t Bin_prot.Write_ml.writer
      val bin_write_t_ :
        'Bin_prot.Unsafe_write_c.writer ->
        'Interval_intf.S1.Set.t Bin_prot.Unsafe_write_c.writer
      val bin_writer_t :
        'Bin_prot.Type_class.writer ->
        'Interval_intf.S1.Set.t Bin_prot.Type_class.writer
    end
  val t_of_sexp :
    (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'Interval_intf.S1.t
  val sexp_of_t :
    ('-> Sexplib.Sexp.t) -> 'Interval_intf.S1.t -> Sexplib.Sexp.t
  val bin_t :
    'Bin_prot.Type_class.t -> 'Interval_intf.S1.t Bin_prot.Type_class.t
  val bin_read_t :
    'Bin_prot.Unsafe_read_c.reader ->
    'Interval_intf.S1.t Bin_prot.Read_ml.reader
  val bin_read_t_ :
    'Bin_prot.Unsafe_read_c.reader ->
    'Interval_intf.S1.t Bin_prot.Unsafe_read_c.reader
  val bin_read_t__ :
    'Bin_prot.Unsafe_read_c.reader ->
    (int -> 'Interval_intf.S1.t) Bin_prot.Unsafe_read_c.reader
  val bin_reader_t :
    'Bin_prot.Type_class.reader ->
    'Interval_intf.S1.t Bin_prot.Type_class.reader
  val bin_size_t :
    'Bin_prot.Size.sizer -> 'Interval_intf.S1.t Bin_prot.Size.sizer
  val bin_write_t :
    'Bin_prot.Unsafe_write_c.writer ->
    'Interval_intf.S1.t Bin_prot.Write_ml.writer
  val bin_write_t_ :
    'Bin_prot.Unsafe_write_c.writer ->
    'Interval_intf.S1.t Bin_prot.Unsafe_write_c.writer
  val bin_writer_t :
    'Bin_prot.Type_class.writer ->
    'Interval_intf.S1.t Bin_prot.Type_class.writer
end