KtMutableIterable<T> class abstract

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. @param T the type of element being iterated over. The mutable iterator is invariant on its element type.

Implemented types
Implementers
Available Extensions

Constructors

KtMutableIterable()

Properties

hashCode int
The hash code for this object.
no setterinherited
iter Iterable<T>
Access to a Iterable to be used in for-loops
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

iterator() KtMutableIterator<T>
Returns an iterator over the elements of this sequence that supports removing elements during iteration.
override
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited