[go: up one dir, main page]

copyless 0.1.3

Ways to eliminate memcpy calls when using the standard library.
Documentation
1
2
3
4
5
6
7
8
9
#![warn(missing_docs)]

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

mod boxed;
mod vec;

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