Bitwise operators

Onyx has the following binary bitwise operators:

OperatorUseWorks on
&Bitwise-Andintegers
``Bitwise-Or
^Bitwise-Xorintegers
<<Bit shift leftintegers
>>Bit shift right (logical)integers
>>>Bit shift right (arithmetic)integers

Onyx has the following unary bitwise operators:

OperatorUseWorks on
~Bitwise-Negateintegers