Quick question: is `(coroutineScope + dispatcher)...
# coroutines
p
Quick question: is
(coroutineScope + dispatcher).launch { }
exactly the same as
coroutineScope.launch(dispatcher) { }
? Is there any scenario where those two calls might behave differently?
👍 1