| 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 |
| 10152 | // iterator is of the same type and we can downcast. |
no outgoing calls
no test coverage detected