| 10190 | return new Iterator(this, begin_, 0, step_); |
| 10191 | } |
| 10192 | virtual ParamIteratorInterface<T>* End() const { |
| 10193 | return new Iterator(this, end_, end_index_, step_); |
| 10194 | } |
| 10195 | |
| 10196 | private: |
| 10197 | class Iterator : public ParamIteratorInterface<T> { |