Does calling `coroutineContext.cancel()` for a `su...
# coroutines
l
Does calling
coroutineContext.cancel()
for a
suspend fun
immediately throws
CancellationException
to interrupt the execution of the function, or should I call
yield()
afterwards?
e
Should yield or call some other cancellable suspending function
👍 1