Expand description
This crate implements transformation algorithms to be used during compression.
§Introduction
The transformation algorithms implemented in this crate are all reversible.
The original order of the data can be reproduced by using the reverse
operation
defined by the Transform
Trait.
Structs§
- Burrow
Wheeler - Burrow-Wheeler transformation
- Move
ToFront - Move-to-Front Transformation
- RunLength
- Run-length struct to save current byte and metainformation about special cases
Enums§
- Transform
Error - An enum representing possible errors during transformation
Traits§
- Transform
- Trait for calculating transformations on byte level