bior(a, b)
Return the bitwise inclusive or of the integers a and b.
inclusive or
a
b
The inputs are treated as if represented in two's complement, even if they are not represented that way internally.
bior(5, 3) // 7 bior(2, 8) // 10
Core Module Index | Contents