faex 0.1.2

A fast and efficient Compact Data Structures Library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod bitvec;
pub mod rank_select;
pub mod rrr_bitvec;

// TODO: not implemented yet.
// pub mod sd_vec;

pub use crate::bit_vectors::bitvec::BitVec;
pub use crate::bit_vectors::rrr_bitvec::RRRBitVec;

pub trait Access {
    // Trait that defines access operation.
    fn access(&self, index: usize) -> Option<bool>;
}