Bitwise OR Operator (|)
The bitwise OR operator compares each bit of its first operand to the corresponding bit of its second operand. If either bit is 1, the corresponding result bit is set to 1. Otherwise, the corresponding result bit is set to 0.
Example
INT a := 0b1010; INT b := 0b10011; INT c; c := a | b; // c is 0b11011
See Also
XJTAG v4.2.5
