We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
The bitwise namespace provides bitwise-operation-related functions.
bitwise
b_and(x, y)
Returns the bitwise and of x and y.
x
y
b_or(x, y)
Returns the bitwise or of x and y.
b_xor(x, y)
Returns the bitwise xor of x and y.
b_not(x)
Returns the bitwise not of x.
lshift(x, y)
Returns x shifted left by y bits.
rshift(x, y)
Returns x shifted right by y bits.
There was an error while loading. Please reload this page.