Method: Orchestrate::Collection#each
- Defined in:
- lib/orchestrate/collection.rb
#each ⇒ Enumerator #each {|key_value| ... } ⇒ Object
Iterates over each KeyValue item in the collection. Used as the basis for Enumerable methods. Items are provided in lexicographically sorted order by key name.
191 192 193 |
# File 'lib/orchestrate/collection.rb', line 191 def each(&block) KeyValueList.new(self).each(&block) end |