kotlin.reflect.KTypeProjection
KTypeProjection
data class KTypeProjection
Platform and version requirements: Kotlin 1.1
Represents a type projection. Type projection is usually the argument to another type in a type usage. For example, in the type Array<out Number>
, out Number
is the covariant projection of the type represented by the class Number
.
Type projection is either the star projection, or an entity consisting of a specific type plus optional variance.
See the 登录查看完整内容