| 227 | uint8_t* TupleEnd() const { return tuple_mem + num_tuples * tuple_byte_size; } |
| 228 | bool AtEnd() const { return tuple_idx == num_tuples; } |
| 229 | int64_t total_allocated_bytes() const { |
| 230 | return tuple_mem_pool.total_allocated_bytes() + aux_mem_pool.total_allocated_bytes(); |
| 231 | } |
| 232 | }; |
| 233 | } |
| 234 |
no outgoing calls