bitor
Bitwise OR of two integers.
Syntax
Section titled “Syntax”v = bitor(a, b)Description
Section titled “Description”Returns the integer whose bits are set where either a or b has a set bit.
Example
Section titled “Example”bitor(12, 10) % 14 (1100 | 1010 = 1110)