CCBool
Basic Bool functions
type t = bool
val compare : t -> t -> int
compare b1 b2 is the total ordering on booleans b1 and b2, similar to Stdlib.compare.
compare b1 b2
b1
b2
Stdlib
val equal : t -> t -> bool
equal b1 b2 is true if b1 and b2 are the same.
equal b1 b2
true
val to_int : t -> int
to_int true = 1, to_int false = 0.
to_int true = 1
to_int false = 0
val of_int : int -> t
of_int i is the same as i <> 0
of_int i
i <> 0
type 'a printer = Stdlib.Format.formatter -> 'a -> unit
val pp : t printer