1pub type MrHashMap<K, V> = hashbrown::HashMap<K, V>; 2pub type MrHashMapEntry<'a, K, V, S> = hashbrown::hash_map::Entry<'a, K, V, S>; 3pub type MrHashSet<T> = hashbrown::HashSet<T>;