You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
#include<execution>structSender
{
using sender_concept = std::execution::sender_t;
private:friend std::execution::connect_t;
autoconnect( std::execution::receiver auto rcvr )
{
//...
}
};
intmain()
{
auto op = std::execution::connect(Sender{}, SomeReceiver{});
}
the current wording suggests it should work but it is not guaranteed. should it be?
same question about get_env and get_completion_signatures — although the latter is complicated by the fact that there is no get_completion_signatures_t to befriend.