Is there any way to invoke an `inline` function f...
# announcements
j
Is there any way to invoke an
inline
function from kotlin code without inlining the body at the call site? (similar to how it would be called from java code invoking it from ex:
FooKt.myInlinedFun()
). Please spare the the 20 questions for determining if this an XY problem, just a curiosity if such a calling convention exists :)
d
reflection maybe
r
Maybe getting a method reference and invoking that? Just throwing ideas out.