| 22 | iterator(const SparseVector& vector, size_t index): vector(vector), index(index) { } |
| 23 | |
| 24 | value_type operator*() const { |
| 25 | return {this->vector.indices[this->index], this->vector.values[this->index]}; |
| 26 | } |
| 27 | |
| 28 | iterator& operator++() { |
| 29 | ++this->index; |
nothing calls this directly
no outgoing calls
no test coverage detected