The following boolean operators are available:
Table of Contents |
---|
band(x)
Boolean AND of left value and x
where x
is a string representing a hexadecimal value.
Code Block |
---|
a.band("3FFF") |
bnot()
Boolean NOT of left value.
Code Block |
---|
a.bnot() |
bor(x)
Boolean OR of left value and x
where x
is a string representing a hexadecimal value. .
Code Block |
---|
a.bor("3FFF") |
bxor(x)
Boolean XOR of left value and x
where x
is a string representing a hexadecimal value. .
Code Block |
---|
a.bxor("3FFF") |
shiftLeft(<num>)
Shifts left value right <num>
times.
Code Block |
---|
a.shiftLeft(14) |
shiftRight(<num>)
Shifts left value right <num>
times.
...