Operators

is not fewer than

Supported By

Syntax

expression is not fewer than expression

Description

The is not fewer than operator compares the two given values. If the first value is greater than or equal to the second, the is not fewer than operator evaluates to true. If the first value is less than the second, the is not fewer than operator evaluates to false.

If both given values are integers or numbers, the values will be compared numerically. If both given values are dates, the values will be compared chronologically. Otherwise, the values will be compared as strings.

Note

String comparison is case-insensitive. For case-sensitive comparison, use the csstrcmp function.

Synonyms

is not before, is not less than, is not smaller than, isn't before, isn't fewer than, isn't less than, isn't smaller than, =>, >=,

See Also

>, gt, ge, between, increasing, ascending, strcmp, csstrcmp