Home
last modified time | relevance | path

Searched refs:IncompleteStateBox (Results 1 – 1 of 1) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DJobSupport.kt1283 private class IncompleteStateBox(@JvmField val state: Incomplete) class
1284 internal fun Any?.boxIncomplete(): Any? = if (this is Incomplete) IncompleteStateBox(this) else this in boxIncomplete()
1285 internal fun Any?.unboxState(): Any? = (this as? IncompleteStateBox)?.state ?: this in boxIncomplete()