Guys if I have a mapper like Mapper<I,O> tha...
# coroutines
p
Guys if I have a mapper like Mapper<I,O> that is very heavy should I do this
fun map
suspend? Or running it with a
withContext(<http://Dispatchers.IO|Dispatchers.IO>)
or
withContext(Dispatchers.Undefined)
would be enough?
1