Initialize iterator to first state:
| 253 | void next() { state.next(ref); } |
| 254 | // Initialize iterator to first state: |
| 255 | void begin() { state.begin(ref); } |
| 256 | // Initialize iterator to end state: |
| 257 | void end() { state.end(ref); } |
| 258 | // Returns current `value` |