Create a Comparison object for evaluating whether a variable is greater than or equal to the given value.
Parameters: | value (object) – The value which a variable is to be compared with. |
---|---|
Returns: | A Comparison object which will evaluate whether or not the comparison evaluates to True. |
Examples:
>>> c = cf.ge(5)
>>> c
<CF Comparison: x ge 5>
>>> c.evaluate(5)
True
>>> c.evaluate(4)
False