Standard Library: Boolean functions
[and: a; b; c*]
→ bool
Performs a short-circuiting boolean AND on the operands and returns the result.
[not: a]
→ bool
Returns the inverse of the input boolean value.
[or: a; b; c*]
→ bool
Performs a short-circuiting boolean OR on the operands and returns the result.
[xor: a; b]
→ bool
Performs a boolean XOR on the operands and returns the result.