bitand

Type: External

Group: general

Syntax

bitand(number1, number2);

Description

Calcuates the bitwise AND of number1 and number2

Examples

bitand(5, 9) = 1;
bitand(5, 7) = 5;

See Also

bitor, bitshift, bitxor