generic_compression 0.2.0

A library providing generic implementations of common compression algorithms.
Documentation
1
2
3
4
5
6
7
8
9
/// Module providing the Burrows-Wheeler Transform (BWT). This is a somewhat
/// complex transform that reduces the entropy of the data, improving the
/// compression ratio of the data.
pub mod bwt;

/// Module providing the Move-To-Front (MTF) transform. A relatively simple
/// transform that is used to improve the compression ratio of the data,
/// usually in combination with other transforms.
pub mod mtf;