Returns a representation of "a<b"
(lhs Expression, rhs Expression)
| 467 | |
| 468 | // Returns a representation of "a<b" |
| 469 | func Lt(lhs Expression, rhs Expression) BoolExpression { |
| 470 | return newBoolExpression(lhs, rhs, []byte("<")) |
| 471 | } |
| 472 | |
| 473 | // Returns a representation of "a<b", where b is a literal |
| 474 | func LtL(lhs Expression, val interface{}) BoolExpression { |