| 15 | using value_type = std::pair<size_t, double>; |
| 16 | |
| 17 | iterator(const VectorExpression& expression, size_t index): expression(expression), index(index) { } |
| 18 | |
| 19 | [[nodiscard]] std::pair<size_t, double> operator*() const { |
| 20 | const auto [_, expression_index] = expression.indices.dereference_iterator(this->index); |
nothing calls this directly
no outgoing calls
no test coverage detected