-
Notifications
You must be signed in to change notification settings - Fork 13.1k
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
Allow evaluation and pattern matching within guards (what Haskell calls "pattern guards") #12830
Comments
Hmm, while not ideal, this does work today: let a;
let b = Some(1);
match b {
Some(c) if {
a = c+1;
a == 2
} => println!("{}", a),
Some(_) => println!("Some"),
None => println!("None")
} Prints |
I started using something like that in another part of the library. In this style, the example above would become
Which is sort of weird, but easy enough to get used to. |
I'm pulling a massive triage effort to get us ready for 1.0. As part of this, I'm moving stuff that's wishlist-like to the RFCs repo, as that's where major new things should get discussed/prioritized. This issue has been moved to the RFCs repo: rust-lang/rfcs#680 |
…x, r=Veykril Find original ast node before compute ref match ref rust-lang/rust-analyzer#12717
Use ControlFlow in more places Now, instead of manually using variables in visitors to signify that a visit is "done" and that the visitor should stop traversing. We use the trait type "Result" to signify this (in relevant places). I'll schedule a perf run, I don't think it will be much of a difference, but every bit of performance is welcomed :) changelog: Improve performance, less memory use in visitors Fixes rust-lang#12829 r? `@y21`
What Rust calls "pattern guards" are just called "guards" in Haskell. Pattern guards in Haskell allow additional evaluation and a refutable pattern match. If that pattern match fails, it's as if a regular guard returned
false
. Here's an example, adapted from the HTML5 tokenizer I'm working on.(I'm not advocating for this particular concrete syntax, just trying to get the idea across.)
One can always refactor to avoid the fancy guard, but in general it can produce ugly, hard-to-follow trees of nested matches. In this case I would love to have a single match per tokenizer state which closely follows the specification.
Pattern guards have proven tremendously useful in GHC and were one of the few GHC extensions accepted into Haskell 2010. I think Rust could benefit just as much.
The text was updated successfully, but these errors were encountered: