We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Describe the feature https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/let.html https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/also.html https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/run.html
These generated functions reduce boilerplate and allow function references for mutation.
var something = new Something(); return z(y(x(something)));
var something = new Something(); return something .apply(this::x) .apply(this::y) .let(this::z);
Describe the target audience Everybody who likes to use function references and likes more readable code.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the feature
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/let.html
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/also.html
https://kotlinlang.org/api/latest/jvm/stdlib/kotlin/run.html
These generated functions reduce boilerplate and allow function references for mutation.
Describe the target audience
Everybody who likes to use function references and likes more readable code.
The text was updated successfully, but these errors were encountered: