| 388 | using receiver_concept = receiver_tag; |
| 389 | |
| 390 | void set_value() noexcept |
| 391 | { |
| 392 | // Resuming the continuation of the parent coroutine will cause it to continue |
| 393 | // executing on the new scheduler. |
| 394 | STDEXEC::__coroutine_resume_nothrow(__parent_); |
| 395 | } |
| 396 | |
| 397 | void set_error(std::exception_ptr __eptr) noexcept |
| 398 | { |
nothing calls this directly
no test coverage detected