kotlin.collections.MutableListIterator
MutableListIterator
interface MutableListIterator<T> : ListIterator<T>, MutableIterator<T>
An iterator over a mutable collection that supports indexed access. Provides the ability to add, modify and remove elements while iterating.
Functions
abstract fun add(element: T) Adds the specified element 登录查看完整内容 |