Compress::LZF_PP - A pure-Perl LZF decompressor


Compress-LZF_PP documentation  | view source Contained in the Compress-LZF_PP distribution.

Index


NAME

Top

Compress::LZF_PP - A pure-Perl LZF decompressor

SYNOPSIS

Top

  use Compress::LZF_PP;
  my $decompressed = decompress($compressed);

DESCRIPTION

Top

This module is a pure-Perl LZF decompressor. LZF is an extremely fast (not that much slower than a pure memcpy) compression algorithm. It is implemented in XS in Compress::LZF module. This is a pure-Perl LZF decompressor. Being pure-Perl, it is about 50x slower than Compress::LZF. Only use this if you can not use Compress::LZF.

AUTHOR

Top

Leon Brocard <acme@astray.com>

COPYRIGHT

Top

LICENSE

Top

This module is free software; you can redistribute it or modify it under the same terms as Perl itself.


Compress-LZF_PP documentation  | view source Contained in the Compress-LZF_PP distribution.