| 10144 | index_++; |
| 10145 | } |
| 10146 | virtual ParamIteratorInterface<T>* Clone() const { |
| 10147 | return new Iterator(*this); |
| 10148 | } |
| 10149 | virtual const T* Current() const { return &value_; } |
| 10150 | virtual bool Equals(const ParamIteratorInterface<T>& other) const { |
| 10151 | // Having the same base generator guarantees that the other |
no outgoing calls
no test coverage detected