Hi folks, I was wondering… What’s the real disadva...
# getting-started
t
Hi folks, I was wondering… What’s the real disadvantages of using inline functions in Kotlin?
h
Increased bytecode size, mainly
d
And potential issues with separate compilation. If an inline function in a library changes you must recompile your code for that change to take effect.
v
All above + messed up stack traces
t
Interesting… Thank you guys
d
Does it have any advantages except increasing efficiency?
a
@dasz
refied
Generics
👍 2