ladata 0.0.29

A simple & modular data model.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// ladata::mem
//
//! Memory-management types.
//

// mod arena;
// mod cache;
// mod pool;
mod size;
mod storage;

pub use all::*;
pub(crate) mod all {
    #[doc(inline)]
    pub use super::{size::*, storage::*};
}