Is it worth implementing Parcelable in Kotlin Enum...
# android
c
Is it worth implementing Parcelable in Kotlin Enums? As far as I know in Java enums is more efficient implementing parcelable, but I don’t know how the serialization for kotlin enums works under the hood
l
You can try "Covert Kotlin to byte code", turn it back up java, and see what it generates