castOrThrow

@JvmName(name = "castOrThrow")
inline fun <T : Any> castOrThrow(obj: Any?, kClass: KClass<T>): T

Casts the given obj to T or throws a TypeCastException if the cast fails.

Return

The cast object.

Parameters

obj

The object to cast.

kClass

The class to cast to.

T

The type to return.

Throws

If the cast fails.