/
Bitwise Operators
Bitwise Operators
The following boolean operators are available:
band(x)
Boolean AND of left value and x
where x
is a string representing a hexadecimal value.
a.band("3FFF")
bnot()
Boolean NOT of left value.
a.bnot()
bor(x)
Boolean OR of left value and x
where x
is a string representing a hexadecimal value. .
a.bor("3FFF")
bxor(x)
Boolean XOR of left value and x
where x
is a string representing a hexadecimal value. .
shiftLeft(<num>)
Shifts left value right <num>
times.
shiftRight(<num>)
Shifts left value right <num>
times.
, multiple selections available,
Related content
Number Operators
Number Operators
More like this
Hex Operators
Hex Operators
More like this
Universal Operators
Universal Operators
More like this
Set Operators
Set Operators
More like this
Variable Arity Event Operators
Variable Arity Event Operators
More like this
Copyright Picolabs | Licensed under Creative Commons.