Update 106-vector.md (#5920)

More links were added to the Vector step in the Rust roadmap
pull/5922/head
Jhonatan Mustiola 5 months ago committed by GitHub
parent 3c160e8809
commit 520fa2db45
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      src/data/roadmaps/rust/content/101-language-basics/103-data-structures/103-character.md
  2. 4
      src/data/roadmaps/rust/content/101-language-basics/103-data-structures/106-vector.md

@ -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: 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@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) - [@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) - [@video@Char Type in Rust](https://www.youtube.com/watch?v=NZaEinuVPVg&pp=ygURY2hhciB0eXBlIGluIHJ1c3Q%3D)

@ -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: Learn more from the following links:
- [@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@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)

Loading…
Cancel
Save