next method

bool next()

Implementation

bool next() {
  if (isNotempty) {
    if ((_rowIndex + 1) < count) {
      _rowIndex++;
      return true;
    } else {
      return false;
    }
  } else {
    return false;
  }
}