Searched refs:StateListIterator (Results 1 – 1 of 1) sorted by relevance
112 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