module Neo4j::Cypher::Context::MathOperator

Public Instance Methods

+(other) click to toggle source
   # File lib/neo4j-cypher/context.rb
61 def +(other)
62   Operator.new(clause_list, clause, other, '+').eval_context
63 end
-(other) click to toggle source
   # File lib/neo4j-cypher/context.rb
57 def -(other)
58   Operator.new(clause_list, clause, other, '-').eval_context
59 end