MCPcopy Create free account
hub / github.com/brimdata/super / NewBinaryExpr

Function NewBinaryExpr

compiler/dag/expr.go:199–206  ·  view source on GitHub ↗
(op string, lhs, rhs Expr)

Source from the content-addressed store, hash-verified

197func (*VectorValue) vectorElemNode() {}
198
199func NewBinaryExpr(op string, lhs, rhs Expr) *BinaryExpr {
200 return &BinaryExpr{
201 Kind: "BinaryExpr",
202 Op: op,
203 LHS: lhs,
204 RHS: rhs,
205 }
206}
207
208func NewCall(tag string, args []Expr) *CallExpr {
209 return &CallExpr{

Callers 11

DataFilterMethod · 0.92
buildRangePrunerFunction · 0.92
rangePrunerPredFunction · 0.92
compareFunction · 0.92
newMetadataPrunerFunction · 0.92
metaPrunerBinaryExprFunction · 0.92
metadataPrunerPredFunction · 0.92
mergeFiltersFunction · 0.92
buildConjunctionFunction · 0.92
pullupExprFunction · 0.92
liftFilterIntoJoinFunction · 0.92

Calls

no outgoing calls

Tested by

no test coverage detected