module Github::Result

def each_page

iterate over this method will return nothing.
Iterator like each for response pages. If there are no pages to
def each_page
  yield self.body
  while page_iterator.has_next?
    yield next_page
  end
end