Returns the result of the (bitwise) logical OR between two values.
// Retrieve the result of a logical OR
ResBinaryOR = BinaryOR(6, 6) // Returns 6
ResBinaryOR = BinaryOR(6, 2) // Returns 6
Syntax
<Result> = BinaryOR(<Value 1> , <Value 2>)
<Result>: Integer
Result of logical OR.
<Value 1>: Integer
First value to test.
<Value 2>: Integer
Second value to test.
Remarks
BinaryOR performs the bitwise calculation between <Value 1> and <Value 2> according to the following table:
BinaryOR is equivalent to the
| binary operator. For more details, see
Binary operators.