INPUT /  OUTPUT /  LANGUAGE






ge, gt, le, lt tags

Transient logic tags

These tags are used to test for an inequality condition when comparing two or more values.

Tagtest condition
gegreater than or equal to
gtgreater than
leless than or equal to
ltless than

Sample usage

Fields

Primary field

Secondary fields

Behaviour

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.

Notes

Example