NonMutualAnd Function

Description:
The logical conjunction of the two boolean values.
In the expression NonMutualAnd( A1, A2, ... AK ), there is no relevance relationship between variables across the sub-expressions Ak.
Returns:
Boolean
Parameter:
Parameter
Data Type
Description
*
Boolean
Examples:
Expression
Result
NonMutualAnd( true, true, true )
true
NonMutualAnd( true, false, true, true )
false
NonMutualAnd( false, false )
false

Related content