# File lib/celerity/element_collection.rb, line 68
    def [](n)
      if @elements && @elements[n - Celerity.index_offset]
        element_class.new(@container, :object, @elements[n - Celerity.index_offset])
      else
        iterator_object(n - Celerity.index_offset)
      end
    end