Eqv Operator
Used to perform a logical equivalence on two expressions.
Synopsis
result = expression1 Eqv expression2
Arguments
The Eqv operator syntax has these parts:
result | Any numeric variable. |
expression1 | Any expression. |
expression2 | Any expression. |
Description
The result is determined according to the following table:
If expression1 is | If expression2 is | The result is |
---|---|---|
True | True | True |
True | False | False |
False | True | False |
False | False | True |