mirror of
https://github.com/m-lamonaca/dev-notes.git
synced 2025-04-06 10:56:41 +00:00
Improve notes on collections
This commit is contained in:
parent
fcdb1651fa
commit
fd4d843b9a
1 changed files with 19 additions and 3 deletions
22
Rust/Rust.md
22
Rust/Rust.md
|
@ -817,10 +817,11 @@ let v: Vec<Type> = Vec<Type>::new(); // empty vec init
|
||||||
let mut v: vec![item1, item2, ...]; // vec init (type inferred)
|
let mut v: vec![item1, item2, ...]; // vec init (type inferred)
|
||||||
|
|
||||||
v.push(item); // add elements to vector
|
v.push(item); // add elements to vector
|
||||||
|
v.pop(); // last item as Option<T> (vector must be mutable)
|
||||||
|
|
||||||
// element access
|
// element access
|
||||||
v.get(index); // get method (returns Option<&T>)
|
let value = v.get(index); // get method (returns Option<&T>)
|
||||||
&v[index]; // index syntax (returns reference, panic on index out of bounds)
|
let value = &v[index]; // index syntax (returns reference, panic on index out of bounds)
|
||||||
|
|
||||||
// iterate over mutable references to each element in a mutable vector in order to make changes to all the elements
|
// iterate over mutable references to each element in a mutable vector in order to make changes to all the elements
|
||||||
for i in mut &v {
|
for i in mut &v {
|
||||||
|
@ -840,10 +841,25 @@ enum Enum {
|
||||||
let v = vec![
|
let v = vec![
|
||||||
Enum::Int(2),
|
Enum::Int(2),
|
||||||
Enum::Float(3.14),
|
Enum::Float(3.14),
|
||||||
Enum::Text("TEST")
|
Enum::Text(String::from("text"))
|
||||||
];
|
];
|
||||||
```
|
```
|
||||||
|
|
||||||
|
### HashMap
|
||||||
|
|
||||||
|
Stores data in key-value pairs.
|
||||||
|
|
||||||
|
```rs
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
let map: HashMap<K, V> = HashMap::new();
|
||||||
|
|
||||||
|
let value = map.get(key); // returns Option<&V>
|
||||||
|
map.inset(key, value); // insert or override value
|
||||||
|
map.entry(key).or_insert(value); // insert if not existing
|
||||||
|
map.entry(key).and_modify(|value| { *value = <expr> }); // modify item based on current value
|
||||||
|
```
|
||||||
|
|
||||||
## Files
|
## Files
|
||||||
|
|
||||||
### Reading Files
|
### Reading Files
|
||||||
|
|
Loading…
Add table
Reference in a new issue