W3cubDocs

/Kotlin

lastIndexOf

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun <T> Array<out T>.lastIndexOf(element: T): Int
fun ByteArray.lastIndexOf(element: Byte): Int
fun ShortArray.lastIndexOf(element: Short): Int
fun IntArray.lastIndexOf(element: Int): Int
fun LongArray.lastIndexOf(element: Long): Int
@DeprecatedSinceKotlin("1.4") fun FloatArray.lastIndexOf(
    element: Float
): Int
Deprecated: The function has unclear behavior when searching for NaN or zero values and will be removed soon. Use 'indexOfLast { it == element }' instead to continue using this behavior, or '.asList().lastIndexOf(element: T)' to get the same search behavior as in a list.
@DeprecatedSinceKotlin("1.4") fun DoubleArray.lastIndexOf(
    element: Double
): Int
Deprecated: The function has unclear behavior when searching for NaN or zero values and will be removed soon. Use 'indexOfLast { it == element }' instead to continue using this behavior, or '.asList().lastIndexOf(element: T)' to get the same search behavior as in a list.
fun BooleanArray.lastIndexOf(element: Boolean): Int
fun CharArray.lastIndexOf(element: Char): Int
@ExperimentalUnsignedTypes fun UIntArray.lastIndexOf(
    element: UInt
): Int
@ExperimentalUnsignedTypes fun ULongArray.lastIndexOf(
    element: ULong
): Int
@ExperimentalUnsignedTypes fun UByteArray.lastIndexOf(
    element: UByte
): Int
@ExperimentalUnsignedTypes fun UShortArray.lastIndexOf(
    element: UShort
): Int

Returns last index of element, or -1 if the array does not contain element.

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun <T> Iterable<T>.lastIndexOf(element: T): Int

Returns last index of element, or -1 if the collection does not contain element.

Platform and version requirements: JVM (1.0), JS (1.0), Native (1.0)
fun <T> List<T>.lastIndexOf(element: T): Int

Returns last index of element, or -1 if the list does not contain element.

© 2010–2020 JetBrains s.r.o. and Kotlin Programming Language contributors
Licensed under the Apache License, Version 2.0.
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin.collections/last-index-of.html