| 471 | mCache.reset(); |
| 472 | } |
| 473 | void fixIter() |
| 474 | { |
| 475 | while (!(mInnerIter != fetch().end())) |
| 476 | { |
| 477 | advanceBase(); |
| 478 | if (!hasValue()) |
| 479 | { |
| 480 | break; |
| 481 | } |
| 482 | mInnerIter = fetch().begin(); |
| 483 | } |
| 484 | } |
| 485 | |
| 486 | public: |
| 487 | constexpr Iter(JoinView const& view) |