Go
to the first, previous,
next, last section, table
of contents. 
Operators below are listed in order of precedence from highest to lowest:
- Built-in functions (ABS, FIRST, MAX, NARROW,
NEW, etc.) 
 
- Field and method selection (x.a) 
 
- Function calls, subscripts, constructors (F(x),
a[i], T{x}) 
 
- Dereferencing (x^) 
 
- Unary plus and minus (+, -) 
 
- Multiplicative operators (*, DIV, /, MOD)
 
- Additive operators and string concatenation (+, -,
&) 
 
- Relational operators and set inclusion (=, #,
<, <=, >=, >, IN)
 
- Logical negation (NOT) 
 
- Logical conjuncation (AND) 
 
- Logical disjunction (OR) 
 
Go to the first, previous,
next, last section, table
of contents.