// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors
/// HashSet type alias using the default hash builder.
pub type HashSet<V, S = DefaultHashBuilder> = HashSet;
/// Entry type for HashSet.
pub type Entry<'a, V, S> = Entry;
/// IntoIter type for HashSet.
pub type IntoIter<V> = IntoIter;