// The matchfinder package defines reusable components for data compression.//// Many compression libraries have two main parts:// - Something that looks for repeated sequences of bytes// - An encoder for the compressed data format (often an entropy coder)//// Although these are logically two separate steps, the implementations are// usually closely tied together. You can't use flate's matcher with snappy's// encoder, for example. This package defines interfaces and an intermediate// representation to allow mixing and matching compression components.
The pages are generated with Goldsv0.8.2. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds.