getPriorRecords method

int getPriorRecords()

Implementation

int getPriorRecords() {
  var result = 0;
  while (_recordCount < _bufferCount && getPriorRecord()) {
    result++;
  }
  return result;
}