Files
iris/src/util/mod.rs
2025-09-20 01:46:55 -04:00

13 lines
256 B
Rust

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