nor[]

Bitwise NOR.

Returns a 1 in each bit position for which the corresponding bits of either or both arguments are 1s. Resulting bits are then inverted.

Syntax

nor[x, y]

Parameters

x Number on which the function performs bitwise operation.
y Number on which the function performs bitwise operation.
Return Value Bitwise NOR value.

Examples

#<result> = nor[1, 2]

result: 4294967292

See also

not, and, or, xor, nand, xnor