fm-index 0.3.1

FM index and its variant implementations for Rust.
Documentation
1
2
3
4
5
6
7
//! Suffix arrays, used to construct the index.
//!
//! Can also be used in sampled fashion to perform locate queries.

pub mod discard;
pub mod sais;
pub mod sample;