sucds 0.8.3

Succinct data structures in Rust
1
2
3
4
5
6
7
8
9
//! 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 sucds::int_vectors::prelude::*;
//! ```
pub use crate::int_vectors::{Access, Build, NumVals};