I have a `suspend` function that do some mapping, ...
# coroutines
l
I have a
suspend
function that do some mapping,
withContext(CommonPool) { some code }
What is the costs of having another
suspend
function like this
Copy code
withContext(CommonPool) {
    for (item in list) call_the_other_suspend_function(item)
  }