This repository has been archived on 2023-03-24. You can view files and clone it, but cannot push or open issues or pull requests.
rustlings-exercises-completed/exercises/vecs
Ada Werefox 238ffe19d7 Completed Exercises. 2023-03-24 21:18:51 +00:00
..
README.md feat: move vec exercises into their own folder 2022-07-12 15:16:25 +02:00
vecs1.rs Completed Exercises. 2023-03-24 21:18:51 +00:00
vecs2.rs Completed Exercises. 2023-03-24 21:18:51 +00:00

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