slop-alloc 6.1.0

Memory allocation backend abstraction for SLOP
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![allow(clippy::disallowed_types)]
mod allocator;
mod backend;
mod buffer;
mod init;
pub mod mem;
mod raw_buffer;
mod slice;

pub use allocator::*;
pub use buffer::Buffer;
pub use init::Init;
pub use slice::Slice;

pub use backend::*;
pub use raw_buffer::{RawBuffer, TryReserveError};