1
2
3
4
5
6
7
8
9
10
//! Collections of objects with typed indices and buildin identifier support.

#![deny(missing_docs)]

mod collection;
mod error;
mod macros;

pub use crate::collection::*;
pub use crate::error::*;