Std.Bool
10 public declarations
- all
&Array[Bool] -> BoolWhether every value is true. True for an empty array.
- and
Bool -> Bool -> BoolWhether both are true. Both are evaluated, unlike `&&`, which is why this
- any
&Array[Bool] -> BoolWhether any value is true. False for an empty array.
- implies
Bool -> Bool -> BoolWhether the first being true forces the second to be.
- not
Bool -> BoolThe opposite of a truth value.
- or
Bool -> Bool -> BoolWhether either is true.
- select
Bool -> T -> T -> TOne of two values, chosen by a condition.
- toInt
Bool -> IntA truth value as a whole number: one for true, nought for false.
- toText
Bool -> StrA truth value written out.
- xor
Bool -> Bool -> BoolWhether exactly one is true.
