Module: Neo4j::Core::Cypher::MathOperator

Included in:
Property
Defined in:
lib/neo4j-core/cypher/cypher.rb

Instance Method Summary collapse

Instance Method Details

#+(other) ⇒ Object



34
35
36
# File 'lib/neo4j-core/cypher/cypher.rb', line 34

def +(other)
  ExprOp.new(self, other, '+')
end

#-(other) ⇒ Object



30
31
32
# File 'lib/neo4j-core/cypher/cypher.rb', line 30

def -(other)
  ExprOp.new(self, other, '-')
end