//! This crate implements a buffer interface for allocating memory and
//! a buffer_ref interface for using shared zero copy slices of that memory.
//!
//! These interfaces are designed to be used in high performance applications where
//! cacheline alignment, SIMD instructions and zero-copy is important.
pub use Buffer;
pub use BufferRef;
pub use cold_copy;
/// Alignment of the Buffer memory
pub const ALIGNMENT: usize = 64;