collections/
collections.rs1pub type HashMap<K, V> = FxHashMap<K, V>;
2pub type HashSet<T> = FxHashSet<T>;
3pub type IndexMap<K, V> = indexmap::IndexMap<K, V, rustc_hash::FxBuildHasher>;
4pub type IndexSet<T> = indexmap::IndexSet<T, rustc_hash::FxBuildHasher>;
5pub type TypeIdHashMap<V> =
6 std::collections::HashMap<std::any::TypeId, V, gpui_util::TypeIdHashBuilder>;
7pub type TypeIdHashSet = std::collections::HashSet<std::any::TypeId, gpui_util::TypeIdHashBuilder>;
8
9pub use indexmap::Equivalent;
10pub use rustc_hash::{FxBuildHasher, FxHashMap, FxHashSet, FxHasher};
11pub use std::collections::*;
12
13pub mod vecmap;
14#[cfg(test)]
15mod vecmap_tests;