| 10626 | index_++; |
| 10627 | } |
| 10628 | ParamIteratorInterface<T>* Clone() const override { |
| 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 |
no outgoing calls
no test coverage detected