Class: ActionView::CollectionRenderer::MixedCollectionIterator

Inherits:
CollectionIterator show all
Defined in:
actionview/lib/action_view/renderer/collection_renderer.rb

Overview

:nodoc:

Instance Method Summary collapse

Methods inherited from CollectionIterator

#each, #length, #preload!, #size

Methods included from Enumerable

#as_json

Constructor Details

#initialize(collection, paths) ⇒ MixedCollectionIterator

Returns a new instance of MixedCollectionIterator.



101
102
103
104
# File 'actionview/lib/action_view/renderer/collection_renderer.rb', line 101

def initialize(collection, paths)
  super(collection)
  @paths = paths
end

Instance Method Details

#each_with_infoObject



106
107
108
109
# File 'actionview/lib/action_view/renderer/collection_renderer.rb', line 106

def each_with_info
  return enum_for(:each_with_info) unless block_given?
  @collection.each_with_index { |o, i| yield(o, @paths[i]) }
end