last method

bool last()

Implementation

bool last() {
  if (isNotempty) {
    _rowIndex = count - 1;
    return true;
  } else {
    return false;
  }
}