class ActionView::CollectionRenderer

:nodoc:

def collection_with_template(view, template, layout, collection)

def collection_with_template(view, template, layout, collection)
  locals = @locals
  cache = {}
  partial_iteration = PartialIteration.new(collection.size)
  collection.each_with_info.map do |object, (path, as, counter, iteration)|
    index = partial_iteration.index
    locals[as]        = object
    locals[counter]   = index
    locals[iteration] = partial_iteration
    _template = (cache[path] ||= (template || find_template(path, @locals.keys + [as, counter, iteration])))
    content = _template.render(view, locals, implicit_locals: [counter, iteration])
    content = layout.render(view, locals) { content } if layout
    partial_iteration.iterate!
    build_rendered_template(content, _template)
  end
end

def render_collection(collection, view, path, template, layout, block)

def render_collection(collection, view, path, template, layout, block)
  identifier = (template && template.identifier) || path
  ActiveSupport::Notifications.instrument(
    "render_collection.action_view",
    identifier: identifier,
    layout: layout && layout.virtual_path,
    count: collection.length
  ) do |payload|
    spacer = if @options.key?(:spacer_template)
      spacer_template = find_template(@options[:spacer_template], @locals.keys)
      build_rendered_template(spacer_template.render(view, @locals), spacer_template)
    else
      RenderedTemplate::EMPTY_SPACER
    end
    collection_body = if template
      cache_collection_render(payload, view, template, collection) do |filtered_collection|
        collection_with_template(view, template, layout, filtered_collection)
      end
    else
      collection_with_template(view, nil, layout, collection)
    end
    return RenderedCollection.empty(@lookup_context.formats.first) if collection_body.empty?
    build_rendered_collection(collection_body, spacer)
  end
end

def render_collection_derive_partial(collection, context, block)

def render_collection_derive_partial(collection, context, block)
  paths = collection.map { |o| partial_path(o, context) }
  if paths.uniq.length == 1
    # Homogeneous
    render_collection_with_partial(collection, paths.first, context, block)
  else
    if @options[:cached]
      raise NotImplementedError, "render caching requires a template. Please specify a partial when rendering"
    end
    paths.map! { |path| retrieve_variable(path).unshift(path) }
    collection = MixedCollectionIterator.new(collection, paths)
    render_collection(collection, context, nil, nil, nil, block)
  end
end

def render_collection_with_partial(collection, partial, context, block)

def render_collection_with_partial(collection, partial, context, block)
  iter_vars  = retrieve_variable(partial)
  collection = if collection.respond_to?(:preload_associations)
    PreloadCollectionIterator.new(collection, partial, iter_vars, collection)
  else
    SameCollectionIterator.new(collection, partial, iter_vars)
  end
  template = find_template(partial, @locals.keys + iter_vars)
  layout = if !block && (layout = @options[:layout])
    find_template(layout.to_s, @locals.keys + iter_vars)
  end
  render_collection(collection, context, partial, template, layout, block)
end

def retrieve_variable(path)

def retrieve_variable(path)
  variable = local_variable(path)
  [variable, :"#{variable}_counter", :"#{variable}_iteration"]
end