Description:
Used to perform a logical equivalence on two expressions.
Syntax:
result = expression1 Eqv expression2
Note:
The result is determined according to the following table:
expression1: |
expression2: |
result: |
true |
true |
true |
true |
false |
false |
false |
true |
false |
false |
false |
true |
The operator performs a bitwise comparison of identically positioned bits in two
numeric expressions and sets the corresponding bit in result according to the following table:
If bit in expression1 is: |
and bit in expression2 is: |
then bit in result is: |
0 |
0 |
1 |
0 |
1 |
0 |
1 |
0 |
0 |
1 |
1 |
1 |