Bit32.bnot

From GiderosMobile
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Available since: Gideros 2022.3
Class: bit32

Description

Returns the bitwise negation of x.

(number) = bit32.bnot(x)

For any integer x, the following identity holds:

assert(bit32.bnot(x) == (-1 - x) % 2^32)

Parameters

x: (number) value

Return values

Returns (number) result

See also

Bitwise Operators