Glue Operators are used in Array syntax, for addressing of Variables.
| Symbol | Type | Name | Description | Example |
|---|---|---|---|---|
| . | Infix | Dot | Glues two variable names together to make a reference to an array key | a.b |
| .. | Infix | Double-dot | __CurrentLoop__ shortcut | a..b |
The Dot Operator - . - can also be used as a prefix, for use with the With command. In this situation it is not technically a glue, as there is no left-hand term, but functions as a pseudo-glue by using the Variable specified by the With command as the left-hand term.