-
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
Pattern matching on fixed length vectors should not be refutable #7784
Comments
See also #5520. |
Additionally, all of these should work for any fixed length greater than zero: fn foo<T>([head, ..tail]: [T,..3]) -> (T, [T]) { (head, tail) } let [head, ..tail] = [1, 2, 3]; match [1, 2, 3] { [head, ..tail] => (head, tail) } Also consider any other permutation where the |
We now consider fixed length vector patterns to be irrefutable in fn main() {
let x = [1, 2, 3];
match x {
[_a, _b, _c] => {}
}
match x {
[_a, .. _b] => {}
}
match x {
[_a, .. _b, _c] => {}
}
/*
let [_a, _b, _c] = x;
let [_a, .. _b] = x;
let [_a, .. _b, _c] = x;
*/
} |
One way to go about this would be to check let refutability the same way exhaustiveness is checked in patterns. But I worry the perf impact might be significant. |
The length of fixed length vectors does not change, so a single pattern should be considered exhaustive.
Function argument destructuring:
Let destructuring:
Match patterns:
The text was updated successfully, but these errors were encountered: