Hello, there is something I haven't figured out of...
# announcements
i
Hello, there is something I haven't figured out of the language. Why would I prefer a "regular" extension function over an inlined one? I have read inline has better performance because it basically copy paste the code
v
"inline has better performance" this is actually the other way around on JVM. That is why the default is what it is.
For an inline inline function to perform better there needs to be a lambda parameter
i
I didn't know that, thanks for the explanation very helpful ✌🏻