<https://github.com/tokuhirom/kdary/blob/7f4f07207...
# multiplatform
t
https://github.com/tokuhirom/kdary/blob/7f4f072079f38279096c8afcf19ea2b291711b53/s[…]in/kotlin/io/github/tokuhirom/kdary/internal/DoubleArrayUnit.kt I'm writing a library for KMP, and i want to use the "inline value class". but if my understanding is correct,
inline value class
is only available on kotlin/jvm. is there any way to use the inline value class for kotlin/jvm, and use the basic data class for other platforms? I can do it with expect/actual.
inline value class
for
jvmMain/
and
data class
for
jsMain
,
linuxX64Main
, and other platfroms... but it's not so smart.