These tags are used to test for an inequality condition when comparing two or more values.
| Tag | test condition |
|---|---|
| ge | greater than or equal to |
| gt | greater than |
| le | less than or equal to |
| lt | less than |
The result of the comparison is true if each value in the primary
field meets the inequality condition when compared to the value that comes after it, until there
are no more values in the list to compare to. For example, the ge tag
will produce a true result for the values 5,5,3 since the first
value in the list is greater than or equal to the second value, and the second value is
also greater than or equal to the third. However the gt tag will produce
false for the same list of values since the first value of 5 is not greater
than the second value in the list.