BITOR

Synopsis
BITOR int1 int2
(BITOR int1 int2 int3 ...)
Description

Outputs the bitwise OR of its inputs, which must be integers. If no inputs are given, then BITOR outputs a value with no bits set.

Example
SHOW BITOR 5 2
7
SHOW BITOR 5 1
5
SHOW (BITOR 6 2 10)
14

SourceForge.net Logo