post-increment
| 114 | |
| 115 | // post-increment |
| 116 | RangeIter operator++(int) { |
| 117 | auto copy = RangeIter(*this); |
| 118 | ++index_; |
| 119 | return copy; |
| 120 | } |
| 121 | |
| 122 | bool operator==(const typename LazyRange<Generator>::RangeIter& other) const { |
| 123 | return this->index_ == other.index_ && this->range_ == other.range_; |