use *;
use *;
pub use Equivalent;
/// Fast [HashMap].
///
/// Note that the implementation relies on a
/// [non-cryptographic hash function](https://en.wikipedia.org/wiki/Non-cryptographic_hash_function).
pub type FastHashMap<KeyT, ValueT> = ;
/// Fast concurrent hash map.
///
/// Note that the implementation relies on a
/// [non-cryptographic hash function](https://en.wikipedia.org/wiki/Non-cryptographic_hash_function).
pub type FastConcurrentHashMap<KeyT, ValueT> = HashMap;
pub use HashMapExt;