plus

operator fun CoroutineScope.plus(context: CoroutineContext): CoroutineScope

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).

Sources

Link copied to clipboard