heaparray 0.5.1

Flexible support for dynamically-sized types, using heap-allocated array of structs
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
/*!
Defines the `BaseArray` struct.
*/

mod alloc_utils;
mod base;
mod mem_block;
mod traits;

pub use base::{BaseArray, BaseArrayIter};
pub use mem_block::MemBlock;
pub use traits::*;