| 219 | */ |
| 220 | template <typename T> |
| 221 | Future<AllValueType<T>> all(std::vector<Future<T>>&& futures) const { |
| 222 | return this->all<T, Future<T>>( |
| 223 | std::forward<std::vector<Future<T>>>(futures)); |
| 224 | } |
| 225 | |
| 226 | /** |
| 227 | * @brief Creates a Future that resolves when every Future in a vector |