KVariance

JVM
JS
Native
1.1
enum class KVariance

Represents variance applied to a type parameter on the declaration site (declaration-site variance), or to a type in a projection (use-site variance).

See the Kotlin language documentation for more information.

See Also

KTypeParameter.variance

KTypeProjection

Enum Values

JVM
JS
Native
1.0

INVARIANT

The affected type parameter or type is invariant, which means it has no variance applied to it.

JVM
JS
Native
1.0

IN

The affected type parameter or type is contravariant. Denoted by the in modifier in the source code.

JVM
JS
Native
1.0

OUT

The affected type parameter or type is covariant. Denoted by the out modifier in the source code.

Inheritors

JVM
JS
Native
1.0

IN

The affected type parameter or type is contravariant. Denoted by the in modifier in the source code.

JVM
JS
Native
1.0

INVARIANT

The affected type parameter or type is invariant, which means it has no variance applied to it.

JVM
JS
Native
1.0

OUT

The affected type parameter or type is covariant. Denoted by the out modifier in the source code.