Vikas Singh
06/14/2021, 10:56 AMmbonnin
06/14/2021, 11:00 AM/**
 * Adds the specified coroutine context to this scope, overriding existing elements in the current
 * scope's context with the corresponding keys.
 *
 * This is a shorthand for `CoroutineScope(thisScope + context)`.
 */
public operator fun CoroutineScope.plus(context: CoroutineContext): CoroutineScope =
    ContextScope(coroutineContext + context)mbonnin
06/14/2021, 11:02 AMCoroutineScope.ktmbonnin
06/14/2021, 11:03 AMCoroutineScope(<http://Dispatchers.IO|Dispatchers.IO>)Dominaezzz
06/14/2021, 11:58 AMVikas Singh
06/14/2021, 1:00 PM