BatBool
Operations on booleans
The boolean ``and''. Evaluation is sequential, left-to-right: in e1 && e2
, e1
is evaluated first, and if it returns false
, e2
is not evaluated at all.
The boolean ``or''. Evaluation is sequential, left-to-right: in e1 || e2
, e1
is evaluated first, and if it returns true
, e2
is not evaluated at all.
val ord : bool -> bool -> BatOrd.order
0.
, nan
+infinity
and -infiity
are false
. The other values convert to true
val operations : t BatNumber.numeric
module Infix : BatNumber.Infix with type bat__infix_t = t
module Compare : BatNumber.Compare with type bat__compare_t = t
val print : 'a BatInnerIO.output -> t -> unit
Printing