module Neo4j::Cypher::Context::Comparable

Public Instance Methods

<(other) click to toggle source
   # File lib/neo4j-cypher/context.rb
67 def <(other)
68   Operator.new(clause_list, clause, other, '<').eval_context
69 end
<=(other) click to toggle source
   # File lib/neo4j-cypher/context.rb
71 def <=(other)
72   Operator.new(clause_list, clause, other, '<=').eval_context
73 end
==(other) click to toggle source
   # File lib/neo4j-cypher/context.rb
95 def ==(other)
96   Operator.new(clause_list, clause, other, "=").eval_context
97 end
=~(other) click to toggle source
   # File lib/neo4j-cypher/context.rb
75 def =~(other)
76   Operator.new(clause_list, clause, other, '=~').eval_context
77 end
>(other) click to toggle source
   # File lib/neo4j-cypher/context.rb
79 def >(other)
80   Operator.new(clause_list, clause, other, '>').eval_context
81 end
>=(other) click to toggle source
   # File lib/neo4j-cypher/context.rb
83 def >=(other)
84   Operator.new(clause_list, clause, other, '>=').eval_context
85 end