fun <T> Array<out T>.indexOf(element: T): Int
fun ByteArray.indexOf(element: Byte): Int
fun ShortArray.indexOf(element: Short): Int
fun IntArray.indexOf(element: Int): Int
fun LongArray.indexOf(element: Long): Int
@DeprecatedSinceKotlin("1.4") fun FloatArray.indexOf( element: Float ): IntDeprecated: The function has unclear behavior when searching for NaN or zero values and will be removed soon. Use 'indexOfFirst { it == element }' instead to continue using this behavior, or '.asList().indexOf(element: T)' to get the same search behavior as in a list.
@DeprecatedSinceKotlin("1.4") fun DoubleArray.indexOf( element: Double ): IntDeprecated: The function has unclear behavior when searching for NaN or zero values and will be removed soon. Use 'indexOfFirst { it == element }' instead to continue using this behavior, or '.asList().indexOf(element: T)' to get the same search behavior as in a list.
fun BooleanArray.indexOf(element: Boolean): Int
fun CharArray.indexOf(element: Char): Int
@ExperimentalUnsignedTypes fun UIntArray.indexOf( element: UInt ): Int
@ExperimentalUnsignedTypes fun ULongArray.indexOf( element: ULong ): Int
@ExperimentalUnsignedTypes fun UByteArray.indexOf( element: UByte ): Int
@ExperimentalUnsignedTypes fun UShortArray.indexOf( element: UShort ): Int
Returns first index of element, or -1 if the array does not contain element.
fun <T> Iterable<T>.indexOf(element: T): Int
Returns first index of element, or -1 if the collection does not contain element.
fun <T> List<T>.indexOf(element: T): Int
Returns first 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/index-of.html