| 158 | } |
| 159 | |
| 160 | void AdvanceTo(const unsigned int flatIdx) |
| 161 | { |
| 162 | assert(this->Iterator != nullptr); |
| 163 | assert(this->Iterator->GetCurrentFlatIndex() <= flatIdx); |
| 164 | while (this->Iterator->GetCurrentFlatIndex() < flatIdx) |
| 165 | { |
| 166 | this->Increment(); |
| 167 | } |
| 168 | } |
| 169 | |
| 170 | void Increment() |
| 171 | { |
no test coverage detected