View on GitHub

ECoS-Documentation

Bitwise Operators

BAND (x, ...)

Returns the bitwise AND of a sequence of one or more numbers.

BOR (x, ...)

Returns the bitwise OR of a sequence of one or more numbers.

BXOR (x, ...)

Returns the bitwise XOR of a sequence of one or more numbers.

BNOT (x)

Returns the bitwise NOT of x.

LSH (x, n)

Returns the bitwise logical left-shift of x by n.

RSH (x, n)

Returns the bitwise logical right-shift of x by n.