1 2 3 4 5 6 7 8 9
// SPDX-License-Identifier: MPL-2.0 //! Publicly exported type aliases. /// Map implementation used by the library. pub type Map<K, V> = rustc_hash::FxHashMap<K, V>; /// Set implementation used by the library. pub type Set<V> = rustc_hash::FxHashSet<V>;