| 325 | { |
| 326 | template <class _CvSender, class... _Env> |
| 327 | static consteval auto __get_completion_signatures() |
| 328 | { |
| 329 | using __child_t = __call_result_t<then_t, __child_of<_CvSender>, _never>; |
| 330 | using __parent_t = __call_result_t<repeat_until_t, __child_t>; |
| 331 | return __repeat_until_impl::__get_completion_signatures<__parent_t, _Env...>(); |
| 332 | } |
| 333 | }; |
| 334 | } // namespace __repeat |
| 335 |
nothing calls this directly
no outgoing calls
no test coverage detected