kotlin.collections.MutableIterable

MutableIterable

interface MutableIterable<out T> : Iterable<T>

Classes that inherit from this interface can be represented as a sequence of elements that can be iterated over and that supports removing elements during iteration.

Parameters

T - the type of element being iterated over. The mutable iterator is invariant on its element type.

Functions

iterator登录查看完整内容