@DeprecatedSinceKotlin("1.4", "1.6", "1.7")fun FloatArray.lastIndexOf( element:Float ): Int (source)
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", "1.6", "1.7")fun DoubleArray.lastIndexOf( element:Double ): Int (source)
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.