Hide deprecated Double/FloatArray.contains/indexOf/lastIndexOf
This commit is contained in:
@@ -1044,11 +1044,11 @@ public operator fun kotlin.ByteArray.contains(element: kotlin.Byte): kotlin.Bool
|
||||
public operator fun kotlin.CharArray.contains(element: kotlin.Char): kotlin.Boolean
|
||||
|
||||
@kotlin.Deprecated(message = "The function has unclear behavior when searching for NaN or zero values and will be removed soon. Use 'any { it == element }' instead to continue using this behavior, or '.asList().contains(element: T)' to get the same search behavior as in a list.", replaceWith = kotlin.ReplaceWith(expression = "any { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public operator fun kotlin.DoubleArray.contains(element: kotlin.Double): kotlin.Boolean
|
||||
|
||||
@kotlin.Deprecated(message = "The function has unclear behavior when searching for NaN or zero values and will be removed soon. Use 'any { it == element }' instead to continue using this behavior, or '.asList().contains(element: T)' to get the same search behavior as in a list.", replaceWith = kotlin.ReplaceWith(expression = "any { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public operator fun kotlin.FloatArray.contains(element: kotlin.Float): kotlin.Boolean
|
||||
|
||||
public operator fun kotlin.IntArray.contains(element: kotlin.Int): kotlin.Boolean
|
||||
@@ -3513,11 +3513,11 @@ public fun kotlin.ByteArray.indexOf(element: kotlin.Byte): kotlin.Int
|
||||
public fun kotlin.CharArray.indexOf(element: kotlin.Char): kotlin.Int
|
||||
|
||||
@kotlin.Deprecated(message = "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.", replaceWith = kotlin.ReplaceWith(expression = "indexOfFirst { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public fun kotlin.DoubleArray.indexOf(element: kotlin.Double): kotlin.Int
|
||||
|
||||
@kotlin.Deprecated(message = "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.", replaceWith = kotlin.ReplaceWith(expression = "indexOfFirst { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public fun kotlin.FloatArray.indexOf(element: kotlin.Float): kotlin.Int
|
||||
|
||||
public fun kotlin.IntArray.indexOf(element: kotlin.Int): kotlin.Int
|
||||
@@ -3872,11 +3872,11 @@ public fun kotlin.ByteArray.lastIndexOf(element: kotlin.Byte): kotlin.Int
|
||||
public fun kotlin.CharArray.lastIndexOf(element: kotlin.Char): kotlin.Int
|
||||
|
||||
@kotlin.Deprecated(message = "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.", replaceWith = kotlin.ReplaceWith(expression = "indexOfLast { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public fun kotlin.DoubleArray.lastIndexOf(element: kotlin.Double): kotlin.Int
|
||||
|
||||
@kotlin.Deprecated(message = "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.", replaceWith = kotlin.ReplaceWith(expression = "indexOfLast { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public fun kotlin.FloatArray.lastIndexOf(element: kotlin.Float): kotlin.Int
|
||||
|
||||
public fun kotlin.IntArray.lastIndexOf(element: kotlin.Int): kotlin.Int
|
||||
|
||||
@@ -1044,11 +1044,11 @@ public operator fun kotlin.ByteArray.contains(element: kotlin.Byte): kotlin.Bool
|
||||
public operator fun kotlin.CharArray.contains(element: kotlin.Char): kotlin.Boolean
|
||||
|
||||
@kotlin.Deprecated(message = "The function has unclear behavior when searching for NaN or zero values and will be removed soon. Use 'any { it == element }' instead to continue using this behavior, or '.asList().contains(element: T)' to get the same search behavior as in a list.", replaceWith = kotlin.ReplaceWith(expression = "any { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public operator fun kotlin.DoubleArray.contains(element: kotlin.Double): kotlin.Boolean
|
||||
|
||||
@kotlin.Deprecated(message = "The function has unclear behavior when searching for NaN or zero values and will be removed soon. Use 'any { it == element }' instead to continue using this behavior, or '.asList().contains(element: T)' to get the same search behavior as in a list.", replaceWith = kotlin.ReplaceWith(expression = "any { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public operator fun kotlin.FloatArray.contains(element: kotlin.Float): kotlin.Boolean
|
||||
|
||||
public operator fun kotlin.IntArray.contains(element: kotlin.Int): kotlin.Boolean
|
||||
@@ -3483,11 +3483,11 @@ public fun kotlin.ByteArray.indexOf(element: kotlin.Byte): kotlin.Int
|
||||
public fun kotlin.CharArray.indexOf(element: kotlin.Char): kotlin.Int
|
||||
|
||||
@kotlin.Deprecated(message = "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.", replaceWith = kotlin.ReplaceWith(expression = "indexOfFirst { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public fun kotlin.DoubleArray.indexOf(element: kotlin.Double): kotlin.Int
|
||||
|
||||
@kotlin.Deprecated(message = "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.", replaceWith = kotlin.ReplaceWith(expression = "indexOfFirst { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public fun kotlin.FloatArray.indexOf(element: kotlin.Float): kotlin.Int
|
||||
|
||||
public fun kotlin.IntArray.indexOf(element: kotlin.Int): kotlin.Int
|
||||
@@ -3842,11 +3842,11 @@ public fun kotlin.ByteArray.lastIndexOf(element: kotlin.Byte): kotlin.Int
|
||||
public fun kotlin.CharArray.lastIndexOf(element: kotlin.Char): kotlin.Int
|
||||
|
||||
@kotlin.Deprecated(message = "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.", replaceWith = kotlin.ReplaceWith(expression = "indexOfLast { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public fun kotlin.DoubleArray.lastIndexOf(element: kotlin.Double): kotlin.Int
|
||||
|
||||
@kotlin.Deprecated(message = "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.", replaceWith = kotlin.ReplaceWith(expression = "indexOfLast { it == element }", imports = {}))
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", warningSince = "1.4")
|
||||
@kotlin.DeprecatedSinceKotlin(errorSince = "1.6", hiddenSince = "1.7", warningSince = "1.4")
|
||||
public fun kotlin.FloatArray.lastIndexOf(element: kotlin.Float): kotlin.Int
|
||||
|
||||
public fun kotlin.IntArray.lastIndexOf(element: kotlin.Int): kotlin.Int
|
||||
|
||||
Reference in New Issue
Block a user