| 20 | using value_type = std::pair<size_t, ElementType>; |
| 21 | |
| 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]}; |
nothing calls this directly
no outgoing calls
no test coverage detected