1 2 3 4 5
#[cfg(feature = "hashbrown")] pub type HashMap<K, V> = hashbrown::HashMap<K, V>; #[cfg(not(feature = "hashbrown"))] pub type HashMap<K, V> = std::collections::HashMap<K, V>;