Method: REXML::SyncEnumerator#each

Defined in:
lib/rexml/syncenumerator.rb

#eachObject

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