Crate rscompress_transformation

Source
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 transformation
  • Move-to-Front Transformation
  • Run-length struct to save current byte and metainformation about special cases

Enums§

  • An enum representing possible errors during transformation

Traits§

  • Trait for calculating transformations on byte level