lt-fm-index 0.7.1

FM-index using k-mer lookup table for exact pattern matching
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Text Length
mod text_length;
pub use text_length::Position;

// Serialize
mod serialize;
pub use serialize::Serialize;

// AsyncSerialize
#[cfg(feature = "async-io")]
mod async_serialize;
#[cfg(feature = "async-io")]
pub use async_serialize::AsyncSerialize;

// Errors
pub mod errors;