// SPDX-License-Identifier: Apache-2.0
// SPDX-FileCopyrightText: Copyright the Vortex contributors
usecrate::aliases::hash_map::RandomState;/// DashMap type alias using the default hash builder.
pubtypeDashMap<K, V>=dashmap::DashMap<K, V, RandomState>;/// Entry type for HashMap.
pubtypeEntry<'a, K, V>=dashmap::Entry<'a, K, V>;