Operators | Description |
---|---|
AND && | Logical AND |
OR (||) | Logical OR |
XOR | Logical XOR |
NOT (!) | Logical NOT |
LESS THAN < | less than |
GREATER THAN > | greater than |
LESS THAN OR EQUAL <= | less than or equal to |
GREATER THAN OR EQUAL >= | greater than or equal to |
EQUAL = | equal |
NOT EQUAL <> or != | not equal |
‘TODO’