/// The default hasher used by the environment's hash collections.
pub use DefaultHashBuilder;
/// A hash map with the environment's default hasher, usable in every
/// environment (std, no-std and wasm).
pub type HashMap<K, V, S = DefaultHashBuilder> = HashMap;
/// A hash set with the environment's default hasher, usable in every
/// environment (std, no-std and wasm).
pub type HashSet<T, S = DefaultHashBuilder> = HashSet;
pub use ;