-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
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
RFC: Partial application sugar #5893
Comments
Rust had this feature until about a year ago; it was called |
(You're free to try implementing it as a macro if you'd like, though.) |
For reference, Haxe 3 supports syntax much like this suggestion: http://haxe.org/ref/callback |
@catamorphism : Well this would not be bind, but just sugar for a closure, as has been proposed in #2189 as a replacement for bind. I can understand not wanting a bind that has different semantics, but as pure sugar? |
@Kimundi That would be possible to implement as a macro, as far as I can tell, so it doesn't need an RFC... someone can just do it :-) |
@catamorphism I just don't see how #2189 means 'we will never have it again', all comments there read as 'syntax is convenient, but impl should not be something separate from a closure', heck you self said basically the same there ;) |
First comment ever on GitHub here :) I hope my reasoning isn't full of errors. Sorry if it is (or I should have open another new Issue) :( Could this RFC be opened again ?
Example 1 : Exemple 2 : |
fix remaining lint messages r? @yaahc changelog: make remaining lint messages adhere to rustc dev guide lint message convention.
More or less superseded by rust-lang/rfcs#2554. |
At the moment, if you want to partially apply a function the only way is to write a closure:
That isn't to bad, but still more verbose than necessary, so I propose a special sugar for this usage:
The rules are simple:
_
in an expression, transform the whole expression into a closure by putting an|...|
at the front and replacing the_
with the first argument in there._
in a expression, append an argument to the argument list, and replace the_
with that, too.This would also allow things like
v.map(_ + 5).filter(3 < _)
to work, which read really nice.Things would get a bit hairy if you involve
if
ormatch
, but each arm would just need the rule to have the same number of_
s. And it would be unidiomatic to use it for bigger code structures anyway.The text was updated successfully, but these errors were encountered: