vortex_utils/aliases/
hash_map.rs1pub type DefaultHashBuilder = hashbrown::DefaultHashBuilder;
6pub type RandomState = hashbrown::DefaultHashBuilder;
8pub type HashMap<K, V, S = DefaultHashBuilder> = hashbrown::HashMap<K, V, S>;
10pub type Entry<'a, K, V, S> = hashbrown::hash_map::Entry<'a, K, V, S>;
12pub type EntryRef<'a, 'b, K, Q, V, S, A> = hashbrown::hash_map::EntryRef<'a, 'b, K, Q, V, S, A>;
14pub type IntoIter<K, V> = hashbrown::hash_map::IntoIter<K, V>;
16pub type HashTable<T> = hashbrown::HashTable<T>;
18pub type HashTableEntry<'a, T> = hashbrown::hash_table::Entry<'a, T>;