Return an object for testing whether a variable is greater than the given value.
The value which a variable is to be compared with.
A Comparison object which will evaluate whether or not the comparison evaluates to True.
Examples
>>> c = cf.gt(5) >>> c <CF Comparison: x gt 5> >>> c.evaluate(6) True >>> c.evaluate(5) False
cf.ge
cf.inside
Enter search terms or a module, class or function name.