mirror of
https://github.com/rust-lang/rust.git
synced 2024-10-31 22:41:50 +00:00
22 lines
406 B
Rust
22 lines
406 B
Rust
// run-pass
|
|
|
|
fn mut_head_tail<'a, A>(v: &'a mut [A]) -> Option<(&'a mut A, &'a mut [A])> {
|
|
match *v {
|
|
[ref mut head, ref mut tail @ ..] => {
|
|
Some((head, tail))
|
|
}
|
|
[] => None
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
let mut v = [1,2,3,4];
|
|
match mut_head_tail(&mut v) {
|
|
None => {},
|
|
Some((h,t)) => {
|
|
*h = 1000;
|
|
t.reverse();
|
|
}
|
|
}
|
|
}
|