memtable-core 0.2.0

Core library that provides table data structures
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#[cfg(any(feature = "alloc", feature = "std"))]
mod dynamic;
#[cfg(any(feature = "alloc", feature = "std"))]
pub use dynamic::DynamicTable;

mod fixed;
pub use fixed::FixedTable;

#[cfg(any(feature = "alloc", feature = "std"))]
mod col;
#[cfg(any(feature = "alloc", feature = "std"))]
pub use col::FixedColumnTable;

#[cfg(any(feature = "alloc", feature = "std"))]
mod row;
#[cfg(any(feature = "alloc", feature = "std"))]
pub use row::FixedRowTable;