bnot(i)
Return the bitwise not of the integer i.
not
i
The input is treated as if represented in two's complement, even if it may not be represented that way internally.
bnot(0) // -1 bnot(3) // -4
Core Module Index | Contents