Versions in this module Expand all Collapse all v1 v1.1.0 Sep 17, 2015 Changes in this version + type Compressor interface + Compress func(value []byte) ([]byte, error) + Decompress func(value []byte) ([]byte, error) + type LZWCompressor struct + func NewLZWCompressor(width int) LZWCompressor + func (l LZWCompressor) Compress(value []byte) ([]byte, error) + func (l LZWCompressor) Decompress(value []byte) ([]byte, error) + type ZlibCompressor struct + func NewZlibCompressor() ZlibCompressor + func (z ZlibCompressor) Compress(value []byte) ([]byte, error) + func (z ZlibCompressor) Decompress(value []byte) ([]byte, error)