JvmInline

@Target(allowedTargets = [AnnotationTarget.CLASS])
expect annotation class JvmInline(source)

Specifies that given value class is inline class.

Adding or removing the annotation is a binary-incompatible change, since methods of inline classes and functions with inline classes in their signatures are mangled.

Since Kotlin

1.5
@Target(allowedTargets = [AnnotationTarget.CLASS])
actual annotation class JvmInline(source)

Specifies that given value class is inline class.

Adding or removing the annotation is a binary-incompatible change, since methods of inline classes and functions with inline classes in their signatures are mangled.

Since Kotlin

1.5