1 #![warn(missing_docs)]
2 
3 //! Helper extensions of standard containers that allow memcopy-less operation.
4 
5 pub use self::{
6     boxed::{BoxAllocation, BoxHelper},
7     vec::{VecAllocation, VecEntry, VecHelper},
8 };
9 
10 mod boxed;
11 mod vec;
12