Extended maintenance of Ruby 1.9.3 ended on February 23, 2015. Read more

In Files

  • rexml/syncenumerator.rb

Parent

Included Modules

Class/Module Index [+]

Quicksearch

REXML::SyncEnumerator

Public Class Methods

new(*enums) click to toggle source

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

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

Public Instance Methods

each() click to toggle source

Enumerates rows of the Enumerable objects.

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

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

 
               # File rexml/syncenumerator.rb, line 20
def length
  @gens.length
end
            
size() click to toggle source

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

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

Commenting is here to help enhance the documentation. For example, code samples, or clarification of the documentation.

If you have questions about Ruby or the documentation, please post to one of the Ruby mailing lists. You will get better, faster, help that way.

If you wish to post a correction of the docs, please do so, but also file bug report so that it can be corrected for the next release. Thank you.

If you want to help improve the Ruby documentation, please visit Documenting-ruby.org.