Sam
10/07/2022, 1:18 PMt: T
, why does t::class
return KClass<out T>
and not KClass<T>
?t::class
is the exact class of t
, not a superclass?t.javaClass.kotlin
does give `KClass<T>`…T
is always the exact type of t
, but really T
could be any supertype of the actual type.