what are the reasons why Value Types didn't make i...
# kotlin-native
s
what are the reasons why Value Types didn't make into Kotlin Native ? wouldn't that have made interop with C way easier/transparent ? like in Swift for example
o
value types per se do not change story of C interop much, other than passing structs by value, which is not so critical feature AFAIK. Generally, one could think of value types as mostly performance optimization, which could be achieved by smart compiler already.