From 338bce1308739328f9a7ccb5fa2da86dfa166d30 Mon Sep 17 00:00:00 2001 From: Jhonatan Mustiola <152746443+hiahir357@users.noreply.github.com> Date: Fri, 28 Jun 2024 09:20:57 -0400 Subject: [PATCH] Update 108-hashmap.md (#5958) Add Rust Hashmap content links. --------- Co-authored-by: dsh --- .../101-language-basics/103-data-structures/108-hashmap.md | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/108-hashmap.md b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/108-hashmap.md index 14b14bedb..83e2175d1 100644 --- a/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/108-hashmap.md +++ b/src/data/roadmaps/rust/content/101-language-basics/103-data-structures/108-hashmap.md @@ -4,4 +4,7 @@ The `HashMap` in Rust is part of the standard library's collections framework an Learn more from the following links: -- [@article@Storing Keys With Associated Values In Hash Maps](https://doc.rust-lang.org/book/ch08-03-hash-maps.html?highlight=hashmap#storing-keys-with-associated-values-in-hash-maps) \ No newline at end of file +- [@official@HashMap in std::collections - Rust](https://doc.rust-lang.org/std/collections/struct.HashMap.html) +- [@official@Storing Keys With Associated Values In Hash Maps](https://doc.rust-lang.org/book/ch08-03-hash-maps.html?highlight=hashmap#storing-keys-with-associated-values-in-hash-maps) +- [@article@Hash Table](https://en.wikipedia.org/wiki/Hash_table) +- [@video@HashMaps: key-value stores in Rust](https://www.youtube.com/watch?v=BfmSYuDdg8Q)