Or

Description:              This function performs a bit-wise OR operation and returns the result.

Returns:                    32 bit unsigned integer

Usage:                       Script or Steady State

Format:                      Or(Parm1, Parm2)

Parameters:             Parm1, Parm2    { numeric }  { required }  { no default }

                                      Any numeric expressions. The expressions will be truncated to 32 bit unsigned integers. A and B must be in the range 0 to 4 294 967 294.

Comments:               If either parameter is invalid, the return value is invalid.

Example:

newVal = Or(0b1010, 0b1100);

The value of newVal will be 0b1110.

See Also:

And | Not | XOr