Does this run concurrently if the `download` funct...
# coroutines
d
Does this run concurrently if the
download
function in a
suspend fun
?
Copy code
urlStringFlow.flatMapMerge(6) { flowOf(client.download(it)) }.collect()