Numeric operators
This table describes the numeric operators.
| Operator | Description | Left hand value types | Right hand types | Notes |
|---|---|---|---|---|
| <= | Less than or equal to | Numeric | Numeric | True if the left side is less than or equal to right side. |
| < | Less than | Numeric | Numeric | True if the left side is less than the right side. |
| != | Not Equal | Numeric | Numeric | True if the left and right sides are not equal. |
| = | Equal | Numeric | Numeric | True if the left and right sides are equal. |
| > | Greater than | Numeric | Numeric | True if the left side is greater than the right side. |
| >= | Greater than or equal to | Numeric | Numeric | True if the left side is greater than or equal to the right side. |