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



39
40
41
# File 'lib/neo4j-core/cypher/cypher.rb', line 39

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

#-(other) ⇒ Object



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

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