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
int n = <some runtime-known number>;
std::vector<MySender> senders;
for (int i = 0; i < n; ++i) {
senders.push_back(...);
}
How to execute them in parallel and get all results? when_all doesn't work because all input senders of when_all should be known at compile-time. I can't pass a vector to when_all.