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