Class: ActionView::CollectionRenderer::SameCollectionIterator
Relationships & Source Files | |
Extension / Inclusion / Inheritance Descendants | |
Subclasses:
|
|
Super Chains via Extension / Inclusion / Inheritance | |
Class Chain:
self,
CollectionIterator
|
|
Instance Chain:
|
|
Inherits: |
ActionView::CollectionRenderer::CollectionIterator
|
Defined in: | actionview/lib/action_view/renderer/collection_renderer.rb |
Class Method Summary
CollectionIterator
- Inherited
Instance Attribute Summary
::Enumerable
- Included
#many? | Returns |
Instance Method Summary
CollectionIterator
- Inherited
::Enumerable
- Included
#compact_blank | Returns a new |
#exclude? | The negative of the |
#excluding | Returns a copy of the enumerable excluding the specified elements. |
#in_order_of | Returns a new |
#including | Returns a new array that includes the passed elements. |
#index_by | Convert an enumerable to a hash, using the block result as the key and the element as the value. |
#index_with | Convert an enumerable to a hash, using the element as the key and the block result as the value. |
#maximum | Calculates the maximum from the extracted elements. |
#minimum | Calculates the minimum from the extracted elements. |
#pick | Extract the given key from the first element in the enumerable. |
#pluck | Extract the given key from each element in the enumerable. |
#sole | Returns the sole item in the enumerable. |
#without | Alias for Enumerable#excluding. |
#as_json |
::ActiveSupport::EnumerableCoreExt::Constants
- Included
Constructor Details
.new(collection, path, variables) ⇒ SameCollectionIterator
# File 'actionview/lib/action_view/renderer/collection_renderer.rb', line 61
def initialize(collection, path, variables) super(collection) @path = path @variables = variables end
Instance Method Details
#each_with_info
[ GitHub ]# File 'actionview/lib/action_view/renderer/collection_renderer.rb', line 71
def each_with_info return enum_for(:each_with_info) unless block_given? variables = [@path] + @variables @collection.each { |o| yield(o, variables) } end
#from_collection(collection)
[ GitHub ]# File 'actionview/lib/action_view/renderer/collection_renderer.rb', line 67
def from_collection(collection) self.class.new(collection, @path, @variables) end