Releases: kyay10/kotlin-lambda-return-inliner
Releases · kyay10/kotlin-lambda-return-inliner
v0.1.2: Now Shadowless with Performance!
In this release, the plugin has stopped shadowing external inline declarations because, who would've guessed, it's a really bad idea to mess with overload resolution like that.
Also, Performance has been significantly improved. The plugin only adds a less than 10% toll on performance and memory allocations.
0.1.1: now with normal invokes!
With this release, you can use normal .invoke
and ()
calls on lambdas and they'll be inlined normally. No more inlineInvokes! (at least user-facing ones. Internally, the compiler plugin basically creates those functions on-the-fly).
First release!
This is the first release of this plugin. It goes without saying that, in its current state, this is far from production-ready. Please only use this currently just for experiments!