ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Compress-LZF/LZF.pm
(Generate patch)

Comparing Compress-LZF/LZF.pm (file contents):
Revision 1.34 by root, Sun Jun 28 17:40:38 2015 UTC vs.
Revision 1.35 by root, Mon Jun 29 23:51:28 2015 UTC

114=back 114=back
115 115
116=head1 SUPPORT FOR THE PERL MULTICORE SPECIFICATION 116=head1 SUPPORT FOR THE PERL MULTICORE SPECIFICATION
117 117
118This module supports the perl multicore specification 118This module supports the perl multicore specification
119(L<http://perlmulticore.schmorp.de/>) for all compression and 119(L<http://perlmulticore.schmorp.de/>) for all compression (> 2000 octets) and
120decompression functions. 120decompression (> 4000 octets) functions.
121 121
122=head1 SEE ALSO 122=head1 SEE ALSO
123 123
124Other Compress::* modules, especially Compress::LZV1 (an older, less 124Other Compress::* modules, especially Compress::LZV1 (an older, less
125speedy module that guarentees only 1 byte overhead worst case) and 125speedy module that guarentees only 1 byte overhead worst case) and
139package Compress::LZF; 139package Compress::LZF;
140 140
141require Exporter; 141require Exporter;
142require DynaLoader; 142require DynaLoader;
143 143
144$VERSION = '3.7'; 144$VERSION = 3.8;
145@ISA = qw/Exporter DynaLoader/; 145@ISA = qw/Exporter DynaLoader/;
146%EXPORT_TAGS = ( 146%EXPORT_TAGS = (
147 freeze => [qw(sfreeze sfreeze_best sfreeze_cr sfreeze_cr_best sfreeze_c sfreeze_c_best sthaw)], 147 freeze => [qw(sfreeze sfreeze_best sfreeze_cr sfreeze_cr_best sfreeze_c sfreeze_c_best sthaw)],
148 compress => [qw(compress compress_best decompress)], 148 compress => [qw(compress compress_best decompress)],
149); 149);

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines