@ExperimentalUnsignedTypes inline fun <R> UIntArray.mapIndexed( transform: (index: Int, UInt) -> R ): List<R>
@ExperimentalUnsignedTypes inline fun <R> ULongArray.mapIndexed( transform: (index: Int, ULong) -> R ): List<R>
@ExperimentalUnsignedTypes inline fun <R> UByteArray.mapIndexed( transform: (index: Int, UByte) -> R ): List<R>
@ExperimentalUnsignedTypes inline fun <R> UShortArray.mapIndexed( transform: (index: Int, UShort) -> R ): List<R>
Returns a list containing the results of applying the given transform function to each element and its index in the original array.
transform
- function that takes the index of an element and the element itself and returns the result of the transform applied to the element.
Returns a list containing the results of applying the given transform function to each element and its index in the original collection.
transform
- function that takes the index of an element and the element itself and returns the result of the transform applied to the element.
© 2010–2019 JetBrains s.r.o.
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/map-indexed.html