perhaps I could generalize - when I have inlined f...
# announcements
s
perhaps I could generalize - when I have inlined function - can I find out who is inlining that function at runtime?
a
Copy code
inline fun <reified T : Any> T.hey() = println("Hello: ${this::class.java.name}")
Something like this?
s
yes, something like this …