kotlin.collections.MutableIterator

MutableIterator

interface MutableIterator<out T> : Iterator<T>

An iterator over a mutable collection. Provides the ability to remove elements while iterating.

See Also

MutableCollection.iterator

Functions

remove