Bitwise NOT

bitnot expression

Bitwise NOT (inversion of all bits) of integer value of expression.

Example:

print bitnot 0
print bitnot -1

Output:

-1
0

See also:

Table of Content