| 59 | return false; |
| 60 | } |
| 61 | ::std::coroutine_handle<> await_suspend( |
| 62 | ::std::coroutine_handle<> awaiter) noexcept { |
| 63 | handle.promise().awaiter = awaiter; |
| 64 | return handle; |
| 65 | } |
| 66 | inline T await_resume() noexcept { |
| 67 | return ::std::move(handle.promise().value); |
| 68 | } |
nothing calls this directly
no outgoing calls
no test coverage detected