Maybe try to add to kotlin.reflect a field that re...
# stdlib
a
Maybe try to add to kotlin.reflect a field that returns the wrapper name of an inline class? (if class C is an inline class then it will return the inline class name else it will return simpleName) This could be used in order to detect if an integers is signed of unsigned for example I would like to get feedback about this idea Thanks for the hard work by now
Copy code
val x  = 6022u
println(x::class.wrapperSimpleName)
println(x::class.wrapperQuilifiedName)