| 10607 | return new Iterator(this, begin_, 0, step_); |
| 10608 | } |
| 10609 | ParamIteratorInterface<T>* End() const override { |
| 10610 | return new Iterator(this, end_, end_index_, step_); |
| 10611 | } |
| 10612 | |
| 10613 | private: |
| 10614 | class Iterator : public ParamIteratorInterface<T> { |