= private = protected
each(&block)
Successively yields all the paginator’s pages to the given block.
# File actionpack/lib/action_controller/pagination.rb, line 284 def each(&block) page_count.times do |n| yield self[n+1] end end