| 75 | [[nodiscard]] auto next_id() const { return data_[cur_].id; } |
| 76 | |
| 77 | [[nodiscard]] auto has_next() const -> bool { return cur_ < size_; } |
| 78 | |
| 79 | void resize(size_t new_size) { |
| 80 | this->capacity_ = new_size; |
no outgoing calls
no test coverage detected