summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorliv <mokou@fastmail.com>2023-02-13 11:01:48 +0100
committerGitHub <noreply@github.com>2023-02-13 11:01:48 +0100
commit149e0c8ac2a18336b0e4ed0da4a55919150117fa (patch)
treefb57155642201b13e36e1364d129aa83f16a433d
parentfc9fb536ca8e2fd0121e0f52719bc838506f68fa (diff)
parent48ce9d2fd827a18314a6fdfdc5895091c6888755 (diff)
Merge pull request #1370 from magnusrodseth/main
docs: add link to docs about `iter_mut` and `map`
-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)