File Coverage

blib/arch/Alien/libbrotli.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1             package Alien::libbrotli;
2 1     1   111179 use 5.012;
  1         4  
3              
4             our $VERSION = "1.0.7.4";
5              
6 1     1   488 use XS::Loader;
  1         1923  
  1         42  
7              
8             XS::Loader::load_noboot();
9              
10             =head1 NAME
11              
12             Alien::libbrotli - Brotli compression library.
13              
14             =cut
15              
16             =head1 DESCRIPTION
17              
18             L is a generic-purpose lossless compression algorithm that compresses data using a combination of a modern variant of the LZ77 algorithm, Huffman coding and 2nd order context modeling, with a compression ratio comparable to the best currently available general-purpose compression methods. It is similar in speed with deflate but offers more dense compression.
19              
20             The specification of the Brotli Compressed Data Format is defined in RFC 7932.
21              
22             =head1 SYNOPSIS
23              
24             =head1 AUTHOR
25              
26             Ivan Baidakou , Crazy Panda LTD
27              
28             =head1 LICENSE
29              
30             You may distribute this code under the same terms as Perl itself.
31              
32             =cut
33              
34              
35              
36             1;