MCPcopy Create free account
hub / github.com/araddon/qlbridge / BinaryNode

Struct BinaryNode

expr/node.go:257–262  ·  view source on GitHub ↗

BinaryNode is x op y, two nodes (left, right) and an operator operators can be a variety of: +, -, *, %, /, LIKE, CONTAINS, INTERSECTS Also, parenthesis may wrap these

Source from the content-addressed store, hash-verified

255 // +, -, *, %, /, LIKE, CONTAINS, INTERSECTS
256 // Also, parenthesis may wrap these
257 BinaryNode struct {
258 negated bool
259 Paren bool
260 Args []Node
261 Operator lex.Token
262 }
263
264 // BooleanNode is n nodes and an operator
265 // operators can be only AND/OR

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected