| 53 | }; |
| 54 | |
| 55 | iterator begin() |
| 56 | { |
| 57 | p.resume(); |
| 58 | return { p, p.done() }; |
| 59 | } |
| 60 | iterator end() { return { p, true }; } |
| 61 | |
| 62 | generator(generator&& rhs) : p(rhs.p) { rhs.p = nullptr; } |
nothing calls this directly
no outgoing calls
no test coverage detected