Boolean17
Constructors
Guards
Combinators
andconstCombines two booleans using logical AND: self && that.eqvconstCombines two booleans using EQV (aka XNOR): !xor(self, that).impliesconstCombines two booleans using an implication: (!self || that).nandconstCombines two booleans using NAND: !(self && that).norconstCombines two booleans using NOR: !(self || that).notconstNegates the given boolean: !self When to use Use to invert a boolean value.orconstCombines two booleans using OR: self || that.xorconstCombines two booleans using XOR: (!self && that) || (self && !that).