Bitwise Operators
Perform bitwise logical operations on inputs.
Page | Description |
---|---|
And | Perform a bitwise AND operation, which outputs 1 if both bits are 1. |
Complement | Perform a bitwise NOT operation to invert each bit. |
Left Shift | Shift an input value left by a specified number of bits. |
Or | Perform a bitwise OR operation, which outputs 1 if either bit is 1. |
Right Shift | Shift an input value right by a specified number of bits. |
Xor | Perform a bitwise XOR operation, which outputs 1 if only one bit is 1. |