Skip to repository content16 lines · 617 B · rust
tenant.openagents/omega
No repository description is available.
OpenAgents Git authority 2026-07-28T05:53:45.140Z Public web read
NIP-34 coordinate
30617:7649603503856e5148d571eac2766b288a8ff1e9e35d380337a1d2b0015b4f92:omegaMaintainersHidden in public view
References2 branches · 1 tag
Read-only clone
git clone https://openagents.com/git/tenant.openagents/omega.gitBrowse files
collections.rs
1pub 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;
16