Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.



Excerpt
hiddentrue

ge(value, compareValue) Returns True if one value is greater than or equal to another.


Function: ge()

Returns True if one value is greater than or equal to another.

...

  1. ge(value, compareValue)
  2. value >= compareValue
ArgumentTypeDescription
valueAnyFirst value to compare
compareValueAnyValue to be compared.

Examples

in.calls >= 200000

Returns True if the number of calls is greater than or equal to 200000.

...