//! Map types.
use ;
use ;
pub use ;
/// [`HashMap`] entry type.
pub type StdEntry<'a, K, V> = Entry;
/// [`IndexMap`] entry type.
pub type IndexEntry<'a, K, V> = Entry;
/// A [`HashMap`] using [`FxHasher`] as its hasher.
pub type FxHashMap<K, V> = ;
/// A [`HashSet`] using [`FxHasher`] as its hasher.
pub type FxHashSet<V> = ;
/// An [`IndexMap`] using [`FxHasher`] as its hasher.
pub type FxIndexMap<K, V> = ;
/// An [`IndexSet`] using [`FxHasher`] as its hasher.
pub type FxIndexSet<V> = ;