diff options
| author | mo8it <mo8it@proton.me> | 2024-06-21 17:02:50 +0200 |
|---|---|---|
| committer | mo8it <mo8it@proton.me> | 2024-06-21 17:02:50 +0200 |
| commit | 68142aff7f439f3a797b4e97a275ca7800eebc45 (patch) | |
| tree | c24d390310af71a3967808e7b79dc0f420433f25 /solutions/06_move_semantics/move_semantics2.rs | |
| parent | 946c29679e27433ff455bdb30343551757d87769 (diff) | |
move_semantics2 solution
Diffstat (limited to 'solutions/06_move_semantics/move_semantics2.rs')
| -rw-r--r-- | solutions/06_move_semantics/move_semantics2.rs | 29 |
1 files changed, 28 insertions, 1 deletions
diff --git a/solutions/06_move_semantics/move_semantics2.rs b/solutions/06_move_semantics/move_semantics2.rs index 4e18198..7bcd33a 100644 --- a/solutions/06_move_semantics/move_semantics2.rs +++ b/solutions/06_move_semantics/move_semantics2.rs @@ -1 +1,28 @@ -// Solutions will be available before the stable release. Thank you for testing the beta version 🥰 +fn fill_vec(vec: Vec<i32>) -> Vec<i32> { + let mut vec = vec; + + vec.push(88); + + vec +} + +fn main() { + // You can optionally experiment here. +} + +#[cfg(test)] +mod tests { + use super::*; + + #[test] + fn move_semantics2() { + let vec0 = vec![22, 44, 66]; + + // Cloning `vec0` so that the clone is moved into `fill_vec`, not `vec0` + // itself. + let vec1 = fill_vec(vec0.clone()); + + assert_eq!(vec0, [22, 44, 66]); + assert_eq!(vec1, [22, 44, 66, 88]); + } +} |
