Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Extractor ¶
type Extractor interface { // Extracts compressed data from input stream `f`. Extract(f afero.File) ([]byte, error) // Compresses `in` data. Compress(in []byte, w io.Writer) error }
The Extractor handles compression and decompression for a specific compression format
func ExtractorFactory ¶
type Lzss ¶
type Lzss struct {
CompressedSize uint // deduced from field size
}
LZSS is not really working ???, need a better impl.
Click to show internal directories.
Click to hide internal directories.