hasNext method

bool hasNext()

Query the reader as to whether there is another record.

@return True if more records exist, false otherwise.

Implementation

bool hasNext() {
  return cnt < header!.getNumRecords() + 1;
}