#include "tensorstore/util/future.h"
Future<void>
tensorstore::WaitAllFuture(span<const AnyFuture> futures);

Creates a Future tied to the completion of all the provided futures objects.

As with the Link variants. the first error result encountered among the future objects will be automatically propagated.

Parameters:
span<const AnyFuture> futures

The futures to be linked.

Returns:

A Future propagating any error state.