typeArgumentOf

@ApiStatus.Experimental
@ApiStatus.AvailableSince(value = "5.0.0")
fun <F : Any, T : Any> typeArgumentOf(obj: F, fromSupertype: KClass<F>, index: Int): KClass<T>

Searches for the type argument of the given class that was supplied to the given super class.

Parameters

obj

The inheriting class.

fromSupertype

The super class to find the type argument of.

index

The index of the type argument to find.

T

The return type of the type argument.

F

The supertype of the inheriting class.