Operators allow you to construct an expression, using one or more arguments.
Most operators are binary (ie. they use 2 arguments) :
a + b
a < b
a div b
but some are unary :
inc(a)
dec(a)
and some can be both depending on the context :
-a
a - b
The operators defined for the Q++ Macro Language are covered in the following sections.