Operators

The following operators are supported by Extended:

Logical Operators

Operator

Definition

AND

True if both sides evaluate to true, otherwise false

OR

True if either side evaluates to true, otherwise false

NOT

Inverts the value of CONTAINS and IN operators. Not supported for other uses.

Numeric Operators

Operator

Definition

+

Add numbers

-

Substract numbers

*

Multiply numbers

/

Divide numbers

%

Returns modulo (remainder) of division between numbers

Relational Operators

Operator

Definition

>

Greater than

<

Less than

>=

Greater than or equal to

<=

Less than or equal to

=

Equality (equal to)

!= (or <>)

Inequality (not equal to)

CONTAINS

True if the list on the left contains the element on the right

IN

True if the element on the left is within the list on the right