| 161 | && __nothrow_connectable<__bouncy_sndr_t, __receiver_t>; |
| 162 | |
| 163 | constexpr explicit __opstate(_Child __child, _Receiver __rcvr) |
| 164 | noexcept(__nothrow_move_constructible<_Child> && __nothrow_connect) |
| 165 | : __opstate_base<_Receiver>(std::move(__rcvr)) |
| 166 | , __child_(std::move(__child)) |
| 167 | { |
| 168 | __connect(); |
| 169 | } |
| 170 | |
| 171 | constexpr void start() noexcept |
| 172 | { |