| 91 | { |
| 92 | template <class _Self, class _Env> |
| 93 | static consteval auto __get_completion_signatures() |
| 94 | { |
| 95 | static_assert(sender_for<_Self, unless_stop_requested_t>); |
| 96 | // TODO: port this to use constant evaluation |
| 97 | return __completions_t<__child_of<_Self>, _Env>{}; |
| 98 | }; |
| 99 | |
| 100 | template <class _Receiver> |
| 101 | using __rcvr_t = |
nothing calls this directly
no outgoing calls
no test coverage detected