MCPcopy
hub / github.com/dropbox/godropbox / NeqL

Function NeqL

database/sqlbuilder/expression.go:464–466  ·  view source on GitHub ↗

Returns a representation of "a!=b", where b is a literal

(lhs Expression, val interface{})

Source from the content-addressed store, hash-verified

462
463// Returns a representation of "a!=b", where b is a literal
464func NeqL(lhs Expression, val interface{}) BoolExpression {
465 return Neq(lhs, Literal(val))
466}
467
468// Returns a representation of "a<b"
469func Lt(lhs Expression, rhs Expression) BoolExpression {

Callers 2

TestNeqExprMethod · 0.85
TestNeqExprNilLHSMethod · 0.85

Calls 2

NeqFunction · 0.85
LiteralFunction · 0.85

Tested by 2

TestNeqExprMethod · 0.68
TestNeqExprNilLHSMethod · 0.68