In new code that doesn't use flows, is there a rec...
# coroutines
c
In new code that doesn't use flows, is there a recommendation/preference between
coroutineContext
and
currentCoroutineContext()
?
l
No, choose what you'd like. The later one exists only to avoid ambiguity when in a CoroutineScope
c
Ok thanks. I assume it's all just compiler magic and there's no performance difference?
l