Operators
The following operators are supported by Extended:
Logical Operators
Operator |
Definition |
|
True if both sides evaluate to true, otherwise false |
|
True if either side evaluates to true, otherwise false |
|
Inverts the value of |
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) |
|
Inequality (not equal to) |
|
True if the list on the left contains the element on the right |
|
True if the element on the left is within the list on the right |