Class: REXML::SyncEnumerator

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/rexml/syncenumerator.rb

Instance Method Summary collapse

Constructor Details

#initialize(*enums) ⇒ SyncEnumerator

Creates a new SyncEnumerator which enumerates rows of given Enumerable objects.



7
8
9
10
# File 'lib/rexml/syncenumerator.rb', line 7

def initialize(*enums)
  @gens = enums
  @length = @gens.collect {|x| x.size }.max
end

Instance Method Details

#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

#lengthObject

Returns the number of enumerated Enumerable objects, i.e. the size of each row.



20
21
22
# File 'lib/rexml/syncenumerator.rb', line 20

def length
  @gens.length
end

#sizeObject

Returns the number of enumerated Enumerable objects, i.e. the size of each row.



14
15
16
# File 'lib/rexml/syncenumerator.rb', line 14

def size
  @gens.size
end