1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-30 20:49:49 +02:00

Update 106-vector.md (#5920)

More links were added to the Vector step in the Rust roadmap
This commit is contained in:
Jhonatan Mustiola
2024-06-25 04:30:55 -04:00
committed by GitHub
parent 3c160e8809
commit 520fa2db45
2 changed files with 6 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ In Rust, the `char` keyword is used to denote a character type. A `char` in Rust
Learn more from the following links:
- [@offcial@The char Primitive Type](https://doc.rust-lang.org/std/primitive.char.html)
- [@official@The char Primitive Type](https://doc.rust-lang.org/std/primitive.char.html)
- [@article@The Character Type](https://rust-book.cs.brown.edu/ch03-02-data-types.html#the-character-type)
- [@article@Unicode Glossary - Unicode Scalar Value](https://www.unicode.org/glossary/#unicode_scalar_value)
- [@video@Char Type in Rust](https://www.youtube.com/watch?v=NZaEinuVPVg&pp=ygURY2hhciB0eXBlIGluIHJ1c3Q%3D)

View File

@@ -4,4 +4,8 @@ A `Vector` in Rust, often referred to as `Vec`, is a growable, or dynamically-si
Learn more from the following links:
- [@article@Storing Lists of Values with Vectors](https://doc.rust-lang.org/book/ch08-01-vectors.html?highlight=vector#storing-lists-of-values-with-vectors)
- [@official@Vec in std::vec - Rust](https://doc.rust-lang.org/std/vec/struct.Vec.html)
- [@article@Storing Lists of Values with Vectors](https://doc.rust-lang.org/book/ch08-01-vectors.html?highlight=vector#storing-lists-of-values-with-vectors)
- [@article@Rust Vector (With Examples)](https://www.programiz.com/rust/vector)
- [@video@Rust: Vectors](https://www.youtube.com/watch?v=nOKOFYzvvHo&t=97s&pp=ygUMcnVzdCB2ZWN0b3Jz)
- [@video@Common Collections in Rust](https://www.youtube.com/watch?v=Zs-pS-egQSs&t=39s&pp=ygUMcnVzdCB2ZWN0b3Jz)