Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 829 Bytes

File metadata and controls

18 lines (13 loc) · 829 Bytes

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.

Additional resources