Skip to content

Commit 80a10e2

Browse files
authored
Merge pull request #1368 from xiaochuanyu/and-the-rest-op
Add tuple `..` operator example
2 parents a1ac06a + 4961fa2 commit 80a10e2

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

src/flow_control/match/destructuring/destructure_tuple.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,16 @@ Tuples can be destructured in a `match` as follows:
44

55
```rust,editable
66
fn main() {
7-
let pair = (0, -2);
8-
// TODO ^ Try different values for `pair`
7+
let triple = (0, -2, 3);
8+
// TODO ^ Try different values for `triple`
99
10-
println!("Tell me about {:?}", pair);
10+
println!("Tell me about {:?}", triple);
1111
// Match can be used to destructure a tuple
12-
match pair {
13-
// Destructure the second
14-
(0, y) => println!("First is `0` and `y` is `{:?}`", y),
15-
(x, 0) => println!("`x` is `{:?}` and last is `0`", x),
12+
match triple {
13+
// Destructure the second and third elements
14+
(0, y, z) => println!("First is `0`, `y` is {:?}, and `z` is {:?}", y, z),
15+
(1, ..) => println!("First is `1` and the rest doesn't matter"),
16+
// `..` can be the used ignore the rest of the tuple
1617
_ => println!("It doesn't matter what they are"),
1718
// `_` means don't bind the value to a variable
1819
}

0 commit comments

Comments
 (0)