Skip to content

bit_and

Computes the bit-wise AND of its arguments.

bit_and(lhs:number, rhs:number) -> number

The bit_and function computes the bit-wise AND of lhs and rhs. The operation is performed on each corresponding bit position of the two numbers.

The left-hand side operand.

The right-hand side operand.

from {x: bit_and(5, 3)}
{x: 1}

bit_or, bit_xor, bit_not, shift_left, shift_right