11 lines
197 B
Rust
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>;
|