Hi folks, I was wondering… What’s the real disadvantages of using inline functions in Kotlin?
h
hho
11/23/2017, 2:21 PM
Increased bytecode size, mainly
d
diesieben07
11/23/2017, 2:33 PM
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
voddan
11/23/2017, 2:44 PM
All above + messed up stack traces
t
tulio
11/23/2017, 3:04 PM
Interesting… Thank you guys
d
dasz
11/23/2017, 7:38 PM
Does it have any advantages except increasing efficiency?