safeCast

fun <T : Any> KClass<T>.safeCast(value: Any?): T?(source)

Casts the given value to the class represented by this KClass object. Returns null if the value is null or if it is not an instance of this class.

Since Kotlin

1.1

See also