https://kotlinlang.org logo
l

luciofm

02/08/2018, 10:01 PM
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)
  }