method

render_partial_collection_with_known_partial_path

render_partial_collection_with_known_partial_path(collection, partial_path, local_assigns)
private

No documentation available.

# File actionpack/lib/action_view/partials.rb, line 139
      def render_partial_collection_with_known_partial_path(collection, partial_path, local_assigns)
        template = ActionView::PartialTemplate.new(self, partial_path, nil, local_assigns)
        collection.map do |element|
          template.render_member(element)
        end
      end