This shows you the differences between two versions of the page.
Both sides previous revision Previous revision Next revision | Previous revision | ||
devlogs:15_5_2022 [2022/05/15 17:40] root |
devlogs:15_5_2022 [2023/10/19 15:25] (current) |
||
---|---|---|---|
Line 24: | Line 24: | ||
You can iterate through every value like < | You can iterate through every value like < | ||
+ | |||
[[https:// | [[https:// | ||
<code rust> | <code rust> | ||
// `Vector`s can be easily iterated over | // `Vector`s can be easily iterated over | ||
println!(" | println!(" | ||
- | for x in xs.iter() { | + | for v in x.iter() { |
| | ||
} | } | ||
Line 34: | Line 35: | ||
// A `Vector` can also be iterated over while the iteration | // A `Vector` can also be iterated over while the iteration | ||
// count is enumerated in a separate variable (`i`) | // count is enumerated in a separate variable (`i`) | ||
- | for (i, x) in xs.iter().enumerate() { | + | for (i, v) in x.iter().enumerate() { |
| | ||
} | } | ||
Line 40: | Line 41: | ||
// Thanks to `iter_mut`, mutable `Vector`s can also be iterated | // Thanks to `iter_mut`, mutable `Vector`s can also be iterated | ||
// over in a way that allows modifying each value | // over in a way that allows modifying each value | ||
- | for x in xs.iter_mut() { | + | for v in xs.iter_mut() { |
- | *x *= 3; | + | *v *= 3; |
} | } | ||
println!(" | println!(" | ||
</ | </ | ||
+ | ==== HashMap ==== | ||
+ | |||
+ | Like dictionaries these use key value pairs. | ||
+ | |||
+ | To make one | ||
+ | <code rust> | ||
+ | let mut name_and_age = HashMap:: | ||
+ | |||
+ | name_and_age.insert(" | ||
+ | name_and_age.insert(" | ||
+ | |||
+ | name_and_age.get(" | ||
+ | </ | ||
+ | |||
+ | You can also insert " | ||
+ | |||
+ | <code rust> | ||
+ | name_and_age.entry(String:: | ||
+ | </ | ||
+ | |||
+ | which is bascially insert if unique. The aims to finish this by may atleast. (given I spend only a little time a week on it) will prollly do some exercizes thru the week without typing my noon-sense.((but typing this is fun fun fun fun)). | ||
+ | |||
+ | {{: | ||