I use (in a similar use case) the following: `inli...
# announcements
v
I use (in a similar use case) the following:
inline fun <reified T : Any> simpleName() = T::class.java.simpleName
. E.g.
simpleName<Int>()
returns "Integer". Very kotlin specific syntax 😄