first method

bool first()

Implementation

bool first() {
  if (isNotempty) {
    _rowIndex = 0;
    return true;
  } else {
    return false;
  }
}