// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors
/// The default hash builder for HashMap.
pub type DefaultHashBuilder = DefaultHashBuilder;
/// Random state for HashMap (alias for DefaultHashBuilder).
pub type RandomState = DefaultHashBuilder;
/// HashMap type alias using the default hash builder.
pub type HashMap<K, V, S = DefaultHashBuilder> = HashMap;
/// Entry type for HashMap.
pub type Entry<'a, K, V, S> = Entry;
/// IntoIter type for HashMap.
pub type IntoIter<K, V> = IntoIter;
/// HashTable type alias.
pub type HashTable<T> = HashTable;
/// Entry type for HashTable.
pub type HashTableEntry<'a, T> = Entry;