1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
#![warn(missing_docs)]

//! Helper extensions of standard containers that allow memcopy-less operation.

pub use self::{
    boxed::{BoxAllocation, BoxHelper},
    vec::{VecAllocation, VecEntry, VecHelper},
};

mod boxed;
mod vec;