Bitwise logic and shifts
#
Bitwise ANDSymbol: _&
Translated to JavaScript bitwise AND operator
It takes 2+ parameters.
#
Bitwise ORSymbol: _|
Translated to JavaScript bitwise OR operator
It takes 2+ parameters.
#
Bitwise NOTSymbol: _!
Translated to JavaScript bitwise NOT operator
It takes 1 parameter.
#
Bitwise XORSymbol: _^
Translated to JavaScript bitwise XOR operator
It takes 2+ parameters.
#
Right shiftSymbol: _>>
Translated to JavaScript bitwise right shift operator
It takes 2+ parameters.
#
Right unsigned shiftSymbol: _>>
Translated to JavaScript bitwise right unsigned shift operator
It takes 2+ parameters.
#
Left shiftSymbol: _<<
Translated to JavaScript bitwise left shift operator
It takes 2+ parameters.