Searched refs:IncompleteStateBox (Results 1 – 1 of 1) sorted by relevance
1283 private class IncompleteStateBox(@JvmField val state: Incomplete) class1284 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()