1pub mod str; 2pub mod symbol; 3pub mod unique; 4 5// === Hash map and set used within this crate === 6 7pub(crate) type Map<K, V> = std::collections::HashMap<K, V, fxhash::FxBuildHasher>;