Hey does anyone know how a `sealed interface` will...
# kotlin-native
m
Hey does anyone know how a
sealed interface
will compile to objective-c? Is it the same as how it compiles as just an
interface
for Java? Wondering if it would have been better for
kotlin.Result
to have been a
sealed interface
with an underlying
private value class
such that it could compile to other platforms...