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

Function newBoolExpression

database/sqlbuilder/expression.go:269–276  ·  view source on GitHub ↗
(lhs, rhs Expression, operator []byte)

Source from the content-addressed store, hash-verified

267}
268
269func newBoolExpression(lhs, rhs Expression, operator []byte) *boolExpression {
270 // go does not allow {} syntax for initializing promoted fields ...
271 expr := new(boolExpression)
272 expr.lhs = lhs
273 expr.rhs = rhs
274 expr.operator = operator
275 return expr
276}
277
278type funcExpression struct {
279 isExpression

Callers 8

LikeFunction · 0.85
RegexpFunction · 0.85
EqFunction · 0.85
NeqFunction · 0.85
LtFunction · 0.85
LteFunction · 0.85
GtFunction · 0.85
GteFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected