Method: REXML::SyncEnumerator#each
- Defined in:
- lib/rexml/syncenumerator.rb
#each ⇒ Object
Enumerates rows of the Enumerable objects.
25 26 27 28 29 30 |
# File 'lib/rexml/syncenumerator.rb', line 25 def each @length.times {|i| yield @gens.collect {|x| x[i]} } self end |