//! Module for hashing utilities. //! //! Named hash_utils to prevent clashing with the std::hash module. /// HashMap using a fast, non-cryptographic hash algorithm. pub type FastHashMap = std::collections::HashMap>; /// HashSet using a fast, non-cryptographic hash algorithm. pub type FastHashSet = std::collections::HashSet>; /// IndexMap using a fast, non-cryptographic hash algorithm. pub type FastIndexMap = indexmap::IndexMap>;