Logical Operators
The following table describes logical operators. Siebel VB performs a bitwise operation for each operator.
Operator | Type | Description |
---|---|---|
NOT |
Unary Not |
Operand can be Integer or Long. |
AND |
And |
Operands can be Integer or Long. |
OR |
Inclusive Or |
Operands can be Integer or Long. |
XOR |
Exclusive Or |
Operands can be Integer or Long. |
EQV |
Equivalence |
Operands can be Integer or Long. (A EQV B) is the same as (NOT (A XOR B)). |
IMP |
Implication |
Operands can be Integer or Long. (A IMP B) is the same as ((NOT A) OR B). |