sig
  type 'a t =
      [ `EQ of 'a * 'a
      | `GE of 'a * 'a
      | `GT of 'a * 'a
      | `LE of 'a * 'a
      | `LT of 'a * 'a
      | `NE of 'a * 'a
      | `One_of of 'a * 'a list ]
  val eval : compare:('-> '-> int) -> 'Olang.t -> bool
  val compare : ('-> '-> int) -> 'Olang.t -> 'Olang.t -> int
  val t_of_sexp : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'Olang.t
  val __t_of_sexp__ : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'Olang.t
  val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'Olang.t -> Sexplib.Sexp.t
  val bin_t : 'Bin_prot.Type_class.t -> 'Olang.t Bin_prot.Type_class.t
  val bin_read_t : 'Bin_prot.Read.reader -> 'Olang.t Bin_prot.Read.reader
  val __bin_read_t__ :
    'Bin_prot.Read.reader -> (int -> 'Olang.t) Bin_prot.Read.reader
  val bin_reader_t :
    'Bin_prot.Type_class.reader -> 'Olang.t Bin_prot.Type_class.reader
  val bin_size_t : 'Bin_prot.Size.sizer -> 'Olang.t Bin_prot.Size.sizer
  val bin_write_t :
    'Bin_prot.Write.writer -> 'Olang.t Bin_prot.Write.writer
  val bin_writer_t :
    'Bin_prot.Type_class.writer -> 'Olang.t Bin_prot.Type_class.writer
end