Operators

bitand

Supported By

Syntax

expression bitand expression

Each expression yields an integer.

Description

The bitand operator evaluates to the bitwise AND of the given values. Each bit in the evaluated value will be set if and only if both of the corresponding bits from each of the given values are set.

See Also

bitxor, bitor, and