summaryrefslogtreecommitdiff
path: root/exercises/vecs/README.md
diff options
context:
space:
mode:
authormagnusrodseth <59113973+magnusrodseth@users.noreply.github.com>2023-02-12 18:26:13 +0100
committermagnusrodseth <59113973+magnusrodseth@users.noreply.github.com>2023-02-12 18:26:13 +0100
commit48ce9d2fd827a18314a6fdfdc5895091c6888755 (patch)
treefb57155642201b13e36e1364d129aa83f16a433d /exercises/vecs/README.md
parentfc9fb536ca8e2fd0121e0f52719bc838506f68fa (diff)
docs: add link to docs about `iter_mut` and `map`
Diffstat (limited to 'exercises/vecs/README.md')
-rw-r--r--exercises/vecs/README.md2
1 files changed, 2 insertions, 0 deletions
diff --git a/exercises/vecs/README.md b/exercises/vecs/README.md
index ebe90bf..8ff9b85 100644
--- a/exercises/vecs/README.md
+++ b/exercises/vecs/README.md
@@ -13,3 +13,5 @@ the other useful data structure, hash maps, later.
## Further information
- [Storing Lists of Values with Vectors](https://doc.rust-lang.org/stable/book/ch08-01-vectors.html)
+- [`iter_mut`](https://doc.rust-lang.org/std/primitive.slice.html#method.iter_mut)
+- [`map`](https://doc.rust-lang.org/std/iter/trait.Iterator.html#method.map)