MCPcopy Create free account
hub / github.com/cosdata/cosdata / BinaryExpression

Class BinaryExpression

src/cosql/expression.rs:64–68  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

62
63#[derive(Debug, Clone, PartialEq)]
64pub struct BinaryExpression {
65 pub left: Expression,
66 pub operator: BinaryExpressionOperator,
67 pub right: Expression,
68}
69
70#[derive(Debug, Clone, PartialEq, Eq)]
71pub enum UnaryOperator {

Callers 4

test_expression_parserFunction · 0.85

Calls

no outgoing calls

Tested by 3

test_expression_parserFunction · 0.68