Method: Bio::FlatFileIndex::FileIDs#each_with_index
- Defined in:
- lib/bio/io/flatfile/index.rb
#each_with_index ⇒ Object
631 632 633 634 635 636 637 |
# File 'lib/bio/io/flatfile/index.rb', line 631 def each_with_index (0...self.size).each do |i| x = self[i] yield(x, i) if x end self end |