User Tools

Site Tools


devlogs:15_5_2022

This is an old revision of the document!


Sunday, May 15th 2022

k

have you play this game? this. its pretty funny.

Collections

Collections are like arrays or tuples whose size do not need to be known at compile time. The two types are

  1. Vectors
  2. HashMap (like Dictionaries in c#)

Vectors

Vectors are resizable arrays whos length do not need to be known at compile time but the size of its type needs to be known.

You can init a vector with the vec! macro. eg

 let x = vec![20,50,20]; 

You can access a certain element like dish rish this*

 println!("{}",x[0]);  

You can iterate through every value like dish rish this* 1) stolen from the rust by example book

// `Vector`s can be easily iterated over
println!("Contents of xs:");
for x in xs.iter() {
 println!("> {}", x);
}
 
// A `Vector` can also be iterated over while the iteration
// count is enumerated in a separate variable (`i`)
for (i, x) in xs.iter().enumerate() {
 println!("In position {} we have value {}", i, x);
}
 
// Thanks to `iter_mut`, mutable `Vector`s can also be iterated
// over in a way that allows modifying each value
for x in xs.iter_mut() {
 *x *= 3;
}
println!("Updated vector: {:?}", xs);
1)
haha, I'm so quirky
devlogs/15_5_2022.1652654450.txt.gz · Last modified: 2023/10/13 16:43 (external edit)