rustHow to convert the keys of a Rust HashMap to a vector?
To convert the keys of a Rust HashMap to a vector, you can use the keys()
method. This will return an iterator over the keys of the HashMap. You can then use the collect()
method to convert the iterator into a vector.
Example code
use std::collections::HashMap;
let mut map = HashMap::new();
map.insert("a", 1);
map.insert("b", 2);
map.insert("c", 3);
let keys: Vec<&str> = map.keys().collect();
println!("{:?}", keys);
Output example
["a", "b", "c"]
Code explanation
let mut map = HashMap::new();
: This creates a new empty HashMap.map.insert("a", 1);
: This inserts a key-value pair into the HashMap.let keys: Vec<&str> = map.keys().collect();
: This uses thekeys()
method to get an iterator over the keys of the HashMap, and then uses thecollect()
method to convert the iterator into a vector.println!("{:?}", keys);
: This prints the vector of keys.
Helpful links
Related
- How to clone a Rust HashMap?
- How to convert a Rust HashMap to JSON?
- How to convert a Rust HashMap to a JSON string?
- How to convert a Rust HashMap to a struct?
- How to use a custom hash function with a Rust HashMap?
- How to use a custom hasher with a Rust HashMap?
- How to use an enum in a Rust HashMap?
- How to convert a Rust HashMap to a BTreeMap?
- How to compare two Rust HashMaps?
More of Rust
- How to parse JSON string in Rust?
- How to replace strings using Rust regex?
- Hashshet example in Rust
- How to use a custom hash function with a Rust HashMap?
- How to compile a regex in Rust?
- How to add matrices in Rust?
- How to get a value by key from JSON in Rust?
- How to convert struct to JSON string in Rust?
- How to filter a Rust HashMap?
- How to use regex lookbehind in Rust?
See more codes...