//! Type aliases for hashing-based collections configured with a specific hasher,
//! as used in various places thorough the API
/// [`indexmap::IndexMap`] configured with a specific hasher
pub type IndexMap<K, V> = IndexMap;
/// [`indexmap::IndexSet`] configured with a specific hasher
pub type IndexSet<T> = IndexSet;
/// [`std::collections::HashMap`] configured with a specific hasher
pub type HashMap<K, V> = HashMap;
/// [`std::collections::HashSet`] configured with a specific hasher
pub type HashSet<T> = HashSet;