Why isn't `withContext` an extension on `Coroutine...
# coroutines
n
Why isn't
withContext
an extension on
CoroutineScope
? Don't `launch`/`async` do more than just switch context?
e
withContext
is a suspending function. It captures parent context and suspends execution util all its children complete.