Mark new KClass.cast/safeCast extensions as low-priority

To avoid overload resolution ambiguity error in sources where everything
from both kotlin.reflect and kotlin.reflect.full is imported with a
star-import
This commit is contained in:
Alexander Udalov
2019-11-04 13:59:21 +01:00
parent 3c7b0e6ccc
commit 7f4b568021
@@ -8,6 +8,8 @@
package kotlin.reflect
import kotlin.internal.LowPriorityInOverloadResolution
/**
* Casts the given [value] to the class represented by this [KClass] object.
* Throws an exception if the value is `null` or if it is not an instance of this class.
@@ -19,6 +21,7 @@ package kotlin.reflect
*/
@SinceKotlin("1.3")
@ExperimentalStdlibApi
@LowPriorityInOverloadResolution
fun <T : Any> KClass<T>.cast(value: Any?): T {
if (!isInstance(value)) throw ClassCastException("Value cannot be cast to $qualifiedName")
return value as T
@@ -35,6 +38,7 @@ fun <T : Any> KClass<T>.cast(value: Any?): T {
*/
@SinceKotlin("1.3")
@ExperimentalStdlibApi
@LowPriorityInOverloadResolution
fun <T : Any> KClass<T>.safeCast(value: Any?): T? {
return if (isInstance(value)) value as T else null
}