Category > Bitwise operators |
Item | Description |
---|---|
& (bitwise AND) | Bitwise AND operator (binary): performs a logical AND operation. |
<< | Left-shift operator (binary): shifts bits to the left. |
>> | Right-shift operator (binary): shifts bits to the right. |
ˆˆ | Bitwise XOR operator (binary): performs a logical XOR operation. |
| (bitwise OR) | Bitwise OR operator (binary): performs a logical OR operation. |
http://www.xHarbour.com