Files
iris/src/util/mod.rs
2025-08-24 20:34:19 -04:00

11 lines
197 B
Rust

mod id;
mod math;
mod refcount;
pub use id::*;
pub use math::*;
pub use refcount::*;
pub type HashMap<K, V> = std::collections::HashMap<K, V>;
pub type HashSet<K> = std::collections::HashSet<K>;