MCPcopy Index your code
hub / github.com/dropbox/godropbox / Lt

Function Lt

database/sqlbuilder/expression.go:469–471  ·  view source on GitHub ↗

Returns a representation of "a<b"

(lhs Expression, rhs Expression)

Source from the content-addressed store, hash-verified

467
468// Returns a representation of "a<b"
469func 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
474func LtL(lhs Expression, val interface{}) BoolExpression {

Callers 2

TestBinaryExprNilRHSMethod · 0.85
LtLFunction · 0.85

Calls 1

newBoolExpressionFunction · 0.85

Tested by 1

TestBinaryExprNilRHSMethod · 0.68