What is the “+” doing here? ``` private val corout...
# getting-started
s
What is the “+” doing here?
Copy code
private val coroutineContext: CoroutineContext
        get() = parentJob + Dispatchers.Default
s
you can middle-click/`cmd+b` with the cursor on the + to go into the
.plus()
definition
s
oooh thanks!
👍 1