/*
* Copyright 2022 Arnaud Golfouse
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at https://mozilla.org/MPL/2.0/.
*/
//! Various data structures used in this crate.
pub use ;
/// The set type used by this crate.
///
/// Mapped to `fnv::FnvHashSet`.
pub type Set<T> = FnvHashSet;
/// The map type used by this crate.
///
/// Mapped to `fnv::FnvHashMap`.
pub type Map<K, V> = FnvHashMap;
/// Default hasher.
pub type Hasher = RandomState;
/// Fast hasher.
pub type FastHasher = FnvBuildHasher;