sig
  type 'a t =
    'a t = private
      True
    | False
    | And of 'a t * 'a t
    | Or of 'a t * 'a t
    | Not of 'a t
    | If of 'a t * 'a t * 'a t
    | Base of 'a
  val compare : ('-> '-> int) -> 'Blang.t -> 'Blang.t -> int
  val bin_t : 'Bin_prot.Type_class.t -> 'Blang.t Bin_prot.Type_class.t
  val bin_read_t : 'Bin_prot.Read.reader -> 'Blang.t Bin_prot.Read.reader
  val __bin_read_t__ :
    'Bin_prot.Read.reader -> (int -> 'Blang.t) Bin_prot.Read.reader
  val bin_reader_t :
    'Bin_prot.Type_class.reader -> 'Blang.t Bin_prot.Type_class.reader
  val bin_size_t : 'Bin_prot.Size.sizer -> 'Blang.t Bin_prot.Size.sizer
  val bin_write_t :
    'Bin_prot.Write.writer -> 'Blang.t Bin_prot.Write.writer
  val bin_writer_t :
    'Bin_prot.Type_class.writer -> 'Blang.t Bin_prot.Type_class.writer
  val t_of_sexp : (Sexplib.Sexp.t -> 'a) -> Sexplib.Sexp.t -> 'Blang.t
  val sexp_of_t : ('-> Sexplib.Sexp.t) -> 'Blang.t -> Sexplib.Sexp.t
end