Here https://crates.io/crates/ahash it is said that for convenience one could do
use ahash::AHashMap;
let mut map: AHashMap<i32, i32> = AHashMap::new();
map.insert(12, 34);
map.insert(56, 78);
But one could do the following which looks even more convenient to me.
use ahash::{AHashMap as HashMap};
let mut map: HashMap<i32, i32> = HashMap::new();
map.insert(12, 34);
map.insert(56, 78);
Question: Is my version technically the same as the one given by the author of ahash
?