Would it be possible to have a non inline equivale...
# stdlib
m
Would it be possible to have a non inline equivalent of enumValues()? Something along the lines of
Copy code
public fun <T : Enum<T>> enumValues(enumClass: KClass<T>): Array<T>
m
This is possible with java.lang.Class.
m
I need
KClass