Hacker News new | ask | show | jobs
Things you can’t do you in Rust: destructure vectors (medium.com)
2 points by andrew-lucker 3122 days ago
1 comments

This is actually not true. You can't do it in stable rust, but on nightly slice destructuring has been possible for a while now (just as the compile error indicates).

See:

- https://doc.rust-lang.org/unstable-book/language-features/sl...

- https://doc.rust-lang.org/unstable-book/language-features/ad...