brk_vecs 0.0.83

A simple index/value store
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
mod file;
mod traits;
mod variants;

use variants::*;

pub use file::{File, PAGE_SIZE, Reader};
pub use traits::*;
pub use variants::{
    AnyStampedVec, CompressedVec, Computation, ComputedVec, ComputedVecFrom1, ComputedVecFrom2,
    ComputedVecFrom3, EagerVec, Format, LazyVecFrom1, LazyVecFrom2, LazyVecFrom3, RawVec, Stamp,
    StampedVec, StoredVec,
};