kotlin.collections.IndexedValue
IndexedValue
data class IndexedValue<out T>
Data class representing a value from a collection or sequence, along with its index in that collection or sequence.
Constructors
IndexedValue(index: Int, value: T) Data class representing a value from a collection or sequence, along with its index in that collection or sequence. |