module Neo4j::Cypher::Context::PredicateMethods
Public Instance Methods
all?(&block)
click to toggle source
# File lib/neo4j-cypher/context.rb 101 def all?(&block) 102 Predicate.new(clause_list, 'all', self, &block).eval_context 103 end
any?(&block)
click to toggle source
# File lib/neo4j-cypher/context.rb 105 def any?(&block) 106 Predicate.new(clause_list, 'any', self, &block).eval_context 107 end
none?(&block)
click to toggle source
# File lib/neo4j-cypher/context.rb 109 def none?(&block) 110 Predicate.new(clause_list, 'none', self, &block).eval_context 111 end
single?(&block)
click to toggle source
# File lib/neo4j-cypher/context.rb 113 def single?(&block) 114 Predicate.new(clause_list, 'single', self, &block).eval_context 115 end