JvmInline

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

Specifies that given value class is inline class.

Adding and removing the annotation is binary incompatible change, since inline classes' methods and functions with inline classes in their signature are mangled.

Since Kotlin

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

Specifies that given value class is inline class.

Adding and removing the annotation is binary incompatible change, since inline classes' methods and functions with inline classes in their signature are mangled.

Since Kotlin

1.5