Home
last modified time | relevance | path

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

/compose/runtime/runtime/src/commonMain/kotlin/androidx/compose/runtime/snapshots/
DSnapshotStateList.kt112 override fun listIterator(): MutableListIterator<T> = StateListIterator(this, 0) in create()
114 override fun listIterator(index: Int): MutableListIterator<T> = StateListIterator(this, index) in create()
315 private class StateListIterator<T>(val list: SnapshotStateList<T>, offset: Int) : in invalidIteratorSet() class