You've already forked comprehensive-rust
mirror of
https://github.com/google/comprehensive-rust.git
synced 2025-06-27 19:18:59 +02:00
8 lines
195 B
Markdown
8 lines
195 B
Markdown
![]() |
# Destructuring Arrays
|
||
|
|
||
|
You can destructure arrays, tuples, and slices by matching on their elements:
|
||
|
|
||
|
```rust,editable
|
||
|
{{#include ../../third_party/rust-by-example/destructuring-arrays.rs}}
|
||
|
```
|