This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
devlogs:8_5_2022 [2022/05/08 15:21] root |
devlogs:8_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 70: | Line 70: | ||
</ | </ | ||
- | ~~ DISCUSS | + | Spent most of the day hanging out with some real life people..... it was fun. |
+ | |||
+ | But to come back to the whole thing of solving the rustlings movesemantics2 | ||
+ | |||
+ | - Make `fill_vec` borrow its argument instead of taking ownership of it, and then copy the data within the function in order to return an owned Vec< | ||
+ | - Make `fill_vec` *mutably* borrow its argument (which will need to be mutable), modify it directly, then not return anything. Then you can get rid of `vec1` entirely | ||
+ | |||
+ | == For number #2 == | ||
+ | |||
+ | We just pass the refrences of the vector (// | ||
+ | |||
+ | <code rust> | ||
+ | fn main() { | ||
+ | let vec0 = Vec:: | ||
+ | |||
+ | let mut vec1 = fill_vec(& | ||
+ | |||
+ | // Do not change the following line! | ||
+ | println!(" | ||
+ | |||
+ | vec1.push(88); | ||
+ | |||
+ | println!(" | ||
+ | } | ||
+ | |||
+ | fn fill_vec(vec: | ||
+ | let mut vec = vec.clone(); | ||
+ | |||
+ | vec.push(22); | ||
+ | vec.push(44); | ||
+ | vec.push(66); | ||
+ | |||
+ | vec | ||
+ | } | ||
+ | </ | ||
+ | |||
+ | == #3 == | ||
+ | |||
+ | For number 3 we can get rid of vec1. We will just take vec0 have it be mutable and then change it within the function. This requires us to make vec0 mutable and pass it by reference so that the ownership does not get moved. | ||
+ | |||
+ | <code rust> | ||
+ | fn main() { | ||
+ | let mut vec0 = Vec::new(); //Make mutable | ||
+ | fill_vec(& | ||
+ | |||
+ | // Do not change the following line! | ||
+ | println!(" | ||
+ | |||
+ | // | ||
+ | |||
+ | // | ||
+ | } | ||
+ | |||
+ | fn fill_vec(vec:& | ||
+ | //let vec = vec; dont need this anymore | ||
+ | vec.push(22); | ||
+ | vec.push(44); | ||
+ | vec.push(66); | ||
+ | |||
+ | } | ||
+ | </ | ||
+ | |||
+ | == Wow tuples! == | ||
+ | Tuples are kinda like arrays but they can hold different types of data. | ||
+ | |||
+ | <code rust> | ||
+ | let i = (2.0," | ||
+ | </ | ||
+ | |||
+ | but like whadoo?? how do you use it? | ||
+ | |||
+ | <code rust> | ||
+ | fn main() { | ||
+ | let i = (2," | ||
+ | let (num, | ||
+ | let anotherNum = i.0; //Lol yeah you can access it like that too | ||
+ | let anotherString = String:: | ||
+ | match i { | ||
+ | | ||
+ | //IF first is 0 and then Destructure the second and third elements | ||
+ | (0, y, z) => println!(" | ||
+ | (1, ..) => println!(" | ||
+ | // | ||
+ | | ||
+ | // `_` means don't bind the value to a variable | ||
+ | } | ||
+ | } | ||
+ | |||
+ | </ | ||
+ | that is all. | ||
+ | |||
+ | ~~DISCUSSION | ||