Hey! Is it possible to get the class of a function...
# announcements
n
Hey! Is it possible to get the class of a function? This
val clazz = ((Int) -> Int)::class
does not work...
d
FunctionN::class
works, where
N
is the arity.
n
wow.. it does! Thanks!