Method: RPath::VertexArrayExpression#method_missing

Defined in:
lib/rpath/expressions.rb

#method_missing(name, *args, &block) ⇒ Object

Constructs an At that evaluates to the first vertex in A; forwards the method invocation to this At. Enables omitting the indexer in expressions like RPath { foo.bar }.



137
138
139
# File 'lib/rpath/expressions.rb', line 137

def method_missing(name, *args, &block)
  self[0].send name, *args, &block
end