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