vortex_utils/aliases/hash_set.rs
1// SPDX-License-Identifier: Apache-2.0
2// SPDX-FileCopyrightText: Copyright the Vortex contributors
3
4/// HashSet type alias using the default hash builder.
5pub type HashSet<V, S = super::DefaultHashBuilder> = hashbrown::HashSet<V, S>;
6/// Entry type for HashSet.
7pub type Entry<'a, V, S> = hashbrown::hash_set::Entry<'a, V, S>;
8/// IntoIter type for HashSet.
9pub type IntoIter<V> = hashbrown::hash_set::IntoIter<V>;