asyncCalls

suspend fun <R> asyncCalls(vararg transforms: suspend () -> R): List<R>

Executes multiple suspend functions asynchronously and waits for all to complete.

Return

A list containing the results of all the suspend functions.

Parameters

transforms

The suspend functions to execute asynchronously.