Hi Kotlin team,
is there any chance we might get extendable enum classes in Kotlin?
Right now the way to do this is to have sealed classes which can extend from other case classes, but this is not optimal since these are not singletons and probably there's performance reasons too (I want to cover hundreds of enumerations).
Use case? If I have an enum with 200 members, some should be grouped in a separate subcategory as to no litter other subcategories where others don't make sense.