Or

(Engine-Level Function)

Description: Performs a bit-wise OR operation and returns the result.
Returns: 32 bit unsigned integer
Usage: Script or steady state.
Function Groups: Bitwise Operation
Related to:
Format: Or(Parm1, Parm2[, Parm3...])
Parameters:  
Parm1, Parm2[, Parm3 ...])
Required. Any number of numeric expressions. The expressions will be truncated to 32 bit unsigned integers.
Comments: If any parameter is invalid, the return value is invalid.

Example:

newVal = Or(0b1010, 0b1100);

The value of newVal will be 0b1110.