firstPage method

bool firstPage()

Implementation

bool firstPage() {
  if (1 == current_page) {
    return false;
  }
  current_page = 1;
  return true;
}