snappy-0.1.0.0: Bindings to the Google Snappy library for fast compression/decompression

Portabilityportable
Stabilityexperimental
MaintainerBryan O'Sullivan <bos@mailrank.com>

Codec.Compression.Snappy

Description

This library provides fast, pure Haskell bindings to Google's Snappy compression and decompression library: http://code.google.com/p/snappy/

Synopsis

Documentation

compress :: ByteString -> ByteStringSource

Compress data into the Snappy format.

decompress :: ByteString -> ByteStringSource

Decompress data in the Snappy format.

If the input is not compressed or is corrupt, an exception will be thrown.