`urls.map { async { loadUrl(it) } }.map { it.await...
# coroutines
j
urls.map { async { loadUrl(it) } }.map { it.await() }
or I think there's
awaitAll()
now
s
Awesome, exactly what I was looking for and awaitAll() works. Thanks 🙂