MCPcopy
hub / github.com/uber/aresdb / BinaryExpr

Struct BinaryExpr

query/expr/ast.go:427–432  ·  view source on GitHub ↗

BinaryExpr represents an operation between two expressions.

Source from the content-addressed store, hash-verified

425
426// BinaryExpr represents an operation between two expressions.
427type BinaryExpr struct {
428 Op Token
429 LHS Expr
430 RHS Expr
431 ExprType Type
432}
433
434// Type returns the type.
435func (e *BinaryExpr) Type() Type {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected