Returns true if this iterator is at the end, i.e. GetRow() cannot be called.
| 48 | |
| 49 | /// Returns true if this iterator is at the end, i.e. GetRow() cannot be called. |
| 50 | bool AtEnd() { |
| 51 | return batch_it_ == list_->row_batches_.end(); |
| 52 | } |
| 53 | |
| 54 | /// Returns the current row. Callers must check the iterator is not AtEnd() before |
| 55 | /// calling GetRow(). |