KtIterable<T> class abstract

Classes that inherit from this interface can be represented as a sequence of elements that can be iterated over. @param T the type of element being iterated over. The iterator is covariant on its element type.

Implementers
Available Extensions

Constructors

KtIterable()

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 setter
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

iterator() KtIterator<T>
Returns an iterator over the elements of this object.
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