nand
Performs a logical nand operation between this Boolean and the other one.
Example:
false nand false // true
false nand true // true
true nand false // true
true nand true // false
Content copied to clipboard
Since
1.1.0
See also
Boolean.not
Boolean.and
Performs a bitwise NAND operation between the two values.
Example:
0 nand 0 // -1
0 nand 1 // -1
1 nand 0 // -1
1 nand 1 // -2
Content copied to clipboard
Since
1.1.0
See also
Int.and