vortex_array/aliases/hash_map.rs
1pub type DefaultHashBuilder = hashbrown::DefaultHashBuilder;
2pub type RandomState = hashbrown::DefaultHashBuilder;
3pub type HashMap<K, V, S = DefaultHashBuilder> = hashbrown::HashMap<K, V, S>;
4pub type Entry<'a, K, V, S> = hashbrown::hash_map::Entry<'a, K, V, S>;
5pub type IntoIter<K, V> = hashbrown::hash_map::IntoIter<K, V>;
6pub type HashTable<T> = hashbrown::HashTable<T>;