R package bindings for the Snappy library.
This library provides compressions and decompression of Snappy bytestrings in R.
# Compress a character vector
comp <- compress("this text will be compressed")
decompress(comp)
## [1] "this text will be compressed"