not

Bitwise NOT.

Inverts the bits of x.

Syntax

not[x]

Parameters

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

Examples

#<result> = not[5]
(print,#<result>)

result: 4294967290

See also

and, or, xor, nand, nor, xnor