| 10122 | virtual ~RangeGenerator() {} |
| 10123 | |
| 10124 | virtual ParamIteratorInterface<T>* Begin() const { |
| 10125 | return new Iterator(this, begin_, 0, step_); |
| 10126 | } |
| 10127 | virtual ParamIteratorInterface<T>* End() const { |
| 10128 | return new Iterator(this, end_, end_index_, step_); |
| 10129 | } |