Class: REXML::SyncEnumerator (Ruby 2.3.4)

In Files

  • rexml/syncenumerator.rb

Parent

Included Modules

Class/Module Index [+]

Quicksearch

REXML::SyncEnumerator

Public Class Methods

new(*enums)

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

 
               # File rexml/syncenumerator.rb, line 8
def initialize(*enums)
  @gens = enums
  @length = @gens.collect {|x| x.size }.max
end
            

Public Instance Methods

each()

Enumerates rows of the Enumerable objects.

 
               # File rexml/syncenumerator.rb, line 26
def each
  @length.times {|i|
    yield @gens.collect {|x| x[i]}
  }
  self
end
            
length()

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

 
               # File rexml/syncenumerator.rb, line 21
def length
  @gens.length
end
            
size()

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

 
               # File rexml/syncenumerator.rb, line 15
def size
  @gens.size
end