jerky 0.9.0

Succinct on-disk data structures in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! The prelude for integer vectors.
//!
//! The purpose of this module is to alleviate imports of many common traits for integer vectors.
//!
//! ```
//! # #![allow(unused_imports)]
//! use jerky::int_vectors::prelude::*;
//! ```
pub use crate::int_vectors::Access;
pub use crate::int_vectors::Build;
pub use crate::int_vectors::NumVals;