Operators

bitor

Supported By

Syntax

expression bitor expression

Each expression yields an integer.

Description

The bitor operator evaluates to the bitwise OR of the given values. Each bit in the evaluated value will be set if and only if at least one of the corresponding bits from each of the given values is set.

See Also

bitand, bitxor, or