1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
(* SPDX-License-Identifier: AGPL-3.0-or-later *)
(* Copyright © 2021-2024 OCamlPro *)
(* Written by the Owi programmers *)

module type T = sig
  type t

  type i32

  val false_ : t

  val true_ : t

  val of_concrete : Bool.t -> t

  val not : t -> t

  val or_ : t -> t -> t

  val and_ : t -> t -> t

  val to_i32 : t -> i32

  val pp : Format.formatter -> t -> unit
end