Is there any reason to use `coroutineContext` with...
# coroutines
w
Is there any reason to use
coroutineContext
with
withContext
?
e
There is not reason.
withContext
is a suspending function and it is always “a child” of sorts, that is, cancellation flows though it naturally.
w
Great thank you 🙂