belongs to collection: Rust HashMap Programs
In this program, we will create a HashMap and then we will insert items into HashMap using the insert() function.
Program/Source Code:
The source code to insert items into a HashMap is given below. The given program is compiled and executed successfully.
// Rust program to insert items // into a HashMap use std::collections::HashMap; fn main() { let mut map = HashMap::new(); map.insert("Key1", 101); map.insert("Key2", 102); map.insert("Key3", 103); map.insert("Key4", 104); println!("HashMap: \n{:?}", map); }
Output:
HashMap: {"Key2": 102, "Key1": 101, "Key4": 104, "Key3": 103}
Explanation:
Here we created a HashMap. Then we inserted the item into HashMap using the insert() method and printed the result.
total answers (1)
start bookmarking useful questions and collections and save it into your own study-lists, login now to start creating your own collections.
Program/Source Code:
The source code to insert items into a HashMap is given below. The given program is compiled and executed successfully.
Output:
Explanation:
Here we created a HashMap. Then we inserted the item into HashMap using the insert() method and printed the result.
need an explanation for this answer? contact us directly to get an explanation for this answer