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