| 10629 | return new Iterator(*this); |
| 10630 | } |
| 10631 | const T* Current() const override { return &value_; } |
| 10632 | bool Equals(const ParamIteratorInterface<T>& other) const override { |
| 10633 | // Having the same base generator guarantees that the other |
| 10634 | // iterator is of the same type and we can downcast. |
no outgoing calls
no test coverage detected