isgreater

.isgreater a:{Number} \
than:{Number} \
orequals:{Boolean = false}
-> Boolean

Return

whether a > b (or >= if orequals is true)

Parameters

a

first number to compare

than

second number to compare

orequals
  • Optional

whether the comparison should be 'greater or equals' instead

Chaining

This function is designed to be chained with other function calls:
Number::isgreater than:{Number} \
orequals:{Boolean}
-> Boolean