OR Operator
Description:
The logical disjunction of the two boolean values:
true or true = true
true or false = true
false or true = true
false or false = false
In the expression
A or B
variables in the sub-expression A are deemed irrelevant if B is true, and variables in the sub-expression B are deemed irrelevant if A is true.
To avoid this inter-dependency between variables use the equivalent expression:
NonMutualOr( A, B )
Returns:
Boolean
Parameters:
Parameter | Data Type | Description |
|---|---|---|
1 | Boolean | The first boolean value. |
2 | Boolean | The second boolean value. |