Await a range of awaitables and return every result once one finishes.
Declared in <folly/coro/Collect.h>
template<typename InputRange>
folly::coro::Task<std::vector</* implementation-defined */>>
collectAnyNoDiscardRange(InputRange awaitables);
A Task with a vector of Try results for all awaitables.
| Name | Description |
|---|---|
| awaitables | The range of awaitables to await. |