Calculates the bitwise AND over all parameters given and returns the result.
number uBitAnd(value, ...)
A list of numeric arguments.
uBitAnd(10, 3) // returns "2"
Calculates the bitwise OR over all parameters given and returns the result.
number uBitOr(value, ...)
A list of numeric arguments.
uBitOR(10, 3) // returns "11"
Calculates the bitwise Exclusive OR over all parameters given and returns the result.
number uBitXOr(value, ...)
A list of numeric arguments.
uBitXOr(10, 3) // returns "9"
Calculates the bitwise NOT over all parameters given and returns the result.
number uBitNot(value, ...);
A list of numeric arguments.
uBitNot(10) // returns "-11"