Files
iris/src/util/mod.rs

15 lines
298 B
Rust

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