Or
(Engine-Level Function)
| 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.
