withCast

@JvmName(name = "withCast")
inline fun <T : Any, R> withCast(obj: Any?, kClass: KClass<T>, block: T.() -> R): R?

Casts the given obj to T and triggers the block if successful.

Return

A nullable value of type R.

Parameters

obj

The object to cast.

kClass

The class to cast to.

block

The block to trigger if the cast is successful.

T

The cast type.

R

The type to return.