class Poppler::IndexIter

Public Instance Methods

each() { |self| ... } click to toggle source
# File lib/poppler/index-iter.rb, line 21
def each
  return to_enum(__method__) unless block_given?

  loop do
    yield(self)
    break unless self.next
  end
end