Skip to main content

ratio_interner/
lib.rs

1#![doc = include_str!("../README.md")]
2
3// ## License
4//
5// This Source Code Form is subject to the terms of the Mozilla Public License, v. 2.0.
6// If a copy of the MPL was not distributed with this file,
7// You can obtain one at <https://mozilla.org/MPL/2.0/>.
8//
9// **Code examples both in the docstrings and rendered documentation are free to use.**
10
11pub mod collection;
12pub mod interner;
13pub use crate::collection::*;
14pub use crate::interner::*;
15
16#[cfg(feature = "slotmap")]
17pub mod slotmap;
18
19#[cfg(feature = "slotmap")]
20pub use slotmap::*;