Skip to content

Releases: kyay10/kotlin-lambda-return-inliner

v0.1.2: Now Shadowless with Performance!

31 Dec 00:44
Compare
Choose a tag to compare

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!

08 Mar 01:02
Compare
Choose a tag to compare
Pre-release

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!

07 Mar 01:59
666c896
Compare
Choose a tag to compare
First release! Pre-release
Pre-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!