token | Usage |
@ | Address operator |
^ | Pointer dereference operator |
+ | Addition or set union operator |
- | Subtraction or set difference operator |
* | Multiplication or set intersection operator |
/ | Real division |
div | Integer Division |
mod | Modulus |
() | Parentheses |
[] | Subscript delimiter, set constants |
= | Assignment operator |
. | Field selection operator |
, | Separator |
.. | Range separator |
: | Type separator or case separator |
= | Equal operator |
< | Less than operator |
> | Greater than operator |
<= | Less than or equal operator |
>= | Greater than or equal operator |
<> | Not equal operator |
and | Logical AND |
in | Set operator |
not | Logical NOT |
or | Logical OR |
shl | Bit shift left replacing right side with 0's |
shr | Bit shift right replacing left side with 0's |
xor | Logical XOR |