<@U3D2DCKQT> You can define yourself a helper: `su...
# coroutines
e
@pniederw You can define yourself a helper:
suspend fun <T> List<CompletableFuture<T>>.awaitAll() = suspending { map { it.await() } }
👍 1