That was `all` combinator. When you need to do som...
# coroutines
e
That was
all
combinator. When you need to do something in parallel as soon as each future completes you do
list.forEach { launch(context) { doSomething(it.await()) } }