tokuhirom
07/24/2024, 1:15 AMinline 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.