Module Textual.BoolExp

type t =
  1. | Exp of Exp.t
  2. | Not of t
  3. | And of t * t
  4. | Or of t * t
val pp : F.formatter -> t -> unit