Initialize iterator to first state:
| 85 | void next() { state.next(ref); } |
| 86 | // Initialize iterator to first state: |
| 87 | void begin() { state.begin(ref); } |
| 88 | // Initialize iterator to end state: |
| 89 | void end() { state.end(ref); } |
| 90 | // Returns current `value` |