Files
iris/src/util/mod.rs
T
2025-09-15 21:13:23 -04:00

17 lines
334 B
Rust

mod bitflags;
mod borrow;
mod id;
mod idvec;
mod math;
mod refcount;
pub(crate) use bitflags::*;
pub(crate) use borrow::*;
pub(crate) use id::*;
pub(crate) use idvec::*;
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>;