Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
bevyengine
GitHub Repository: bevyengine/bevy
Path: blob/main/crates/bevy_platform/src/collections/mod.rs
6849 views
1
//! Provides [`HashMap`] and [`HashSet`] from [`hashbrown`] with some customized defaults.
2
//!
3
//! Also provides the [`HashTable`] type, which is specific to [`hashbrown`].
4
5
pub use hash_map::HashMap;
6
pub use hash_set::HashSet;
7
pub use hash_table::HashTable;
8
pub use hashbrown::Equivalent;
9
10
pub mod hash_map;
11
pub mod hash_set;
12
pub mod hash_table;
13
14