i’ve played around and i’ve that now: ``` var resu...
# coroutines
n
i’ve played around and i’ve that now:
Copy code
var results = listOf<SearchResult>()
        runBlocking<Unit> {
            results = providers.map {
                async(CommonPool) {
                    it.search()
                }
            }.map { it.await() }
        }
        return results
a
it should work