Returns the index in the RowBatch of the current row. This does an integer division and so should not be used in hot inner loops.
| 218 | /// Returns the index in the RowBatch of the current row. This does an integer |
| 219 | /// division and so should not be used in hot inner loops. |
| 220 | int RowNum() { return (row_ - parent_->tuple_ptrs_) / num_tuples_per_row_; } |
| 221 | |
| 222 | /// Returns number of rows remaining. |
| 223 | int RemainingRows() { return (row_batch_end_ - row_) / num_tuples_per_row_; } |
no outgoing calls
no test coverage detected