So I’m having trouble finding an answer to this: the KEEP specifies that (emphasis mine):
Kotlin/Native can support value classes with multiple fields. Moreover, Kotlin/Native being based on LLVM, could be passing around and storing value objects with multiple underlying fields without boxing them with relative ease.
What is the current status of this? Are value classes generally supported in Kotlin/Native? Do they offer a performance benefit, e.g. an array of value class instances being totally contiguous in memory? Does @JvmInline
mean anything in Kotlin/Native?
Thanks in advance.