https://kotlinlang.org logo
#reflect
Title
# reflect
d

dmcg

02/12/2019, 11:31 AM
What I'm really trying to do is to get a
KFunction0
by applying a receiver to a
KFunction1
returned from
this::class::memberFunctions
- is that possible?
g

gildor

02/12/2019, 11:32 AM
Copy code
this::class::memberFunctions
this syntax wrong by definition, you cannot get function reference from class, only from object instatnce
2 Views