You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
rustlings/exercises/vecs
Adam Brewer 7bab78c66d Rename iteration var names in vec2.rs for clarity
Resolves #1417
1 year ago
..
README.md docs: add link to docs about `iter_mut` and `map` 1 year ago
vecs1.rs feat: move vec exercises into their own folder 2 years ago
vecs2.rs Rename iteration var names in vec2.rs for clarity 1 year ago

README.md

Vectors

Vectors are one of the most-used Rust data structures. In other programming languages, they'd simply be called Arrays, but since Rust operates on a bit of a lower level, an array in Rust is stored on the stack (meaning it can't grow or shrink, and the size needs to be known at compile time), and a Vector is stored in the heap (where these restrictions do not apply).

Vectors are a bit of a later chapter in the book, but we think that they're useful enough to talk about them a bit earlier. We shall be talking about the other useful data structure, hash maps, later.

Further information