Class: Neo4j::Core::Cypher::Entities

Inherits:
Object
  • Object
show all
Includes:
PredicateMethods
Defined in:
lib/neo4j-core/cypher/cypher.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from PredicateMethods

#all?, #any?, #extract, #filter, #none?, #single?

Constructor Details

#initialize(expressions, iterable, input) ⇒ Entities

Returns a new instance of Entities.



1021
1022
1023
1024
1025
# File 'lib/neo4j-core/cypher/cypher.rb', line 1021

def initialize(expressions, iterable, input)
  @iterable = iterable
  @input = input
  @expressions = expressions
end

Instance Attribute Details

#expressionsObject (readonly)

Returns the value of attribute expressions.



1019
1020
1021
# File 'lib/neo4j-core/cypher/cypher.rb', line 1019

def expressions
  @expressions
end

#inputObject (readonly)

Returns the value of attribute input.



1019
1020
1021
# File 'lib/neo4j-core/cypher/cypher.rb', line 1019

def input
  @input
end

#iterableObject (readonly)

Returns the value of attribute iterable.



1019
1020
1021
# File 'lib/neo4j-core/cypher/cypher.rb', line 1019

def iterable
  @iterable
end