Return an object for testing whether a variable is strictly less than a 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.lt(5) >>> c <CF Comparison: x lt 5> >>> c.evaluate(4) True >>> c.evaluate(5) False
cf.le
cf.ne
Enter search terms or a module, class or function name.