The following operators are supported.
Operator |
Action |
---|---|
+ |
Addition |
- |
Subtraction |
/ |
Division |
* |
Multiplication |
< |
Less Than (returns true/false) |
> |
Greater Than (returns true/false) |
= |
Equal To (returns true/false) |
<= |
Less than or equal to |
>= |
More than or equal to |
! |
Flips the results. Example: !true means NOT true. |
& |
Conditional And |
| |
Conditional OR |
&& |
Multiple conditional And Example: “date> today && date<Today+7” would check if the date is greater than 11/24/15 AND less than 12/1/15. |
|| |
Multiple conditional OR Example: “date> today || date<Today+7” would check if the date is greater than 11/24/15 OR less than 12/1/15. |
^ |
Exclusive OR |