File Coverage

blib/lib/Set/Product/XS.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Set::Product::XS;
2              
3 2     2   134085 use strict;
  2         46  
  2         71  
4 2     2   16 use warnings;
  2         5  
  2         72  
5              
6 2     2   15 use Exporter qw(import);
  2         4  
  2         62  
7 2     2   15 use XSLoader;
  2         4  
  2         176  
8              
9             our $VERSION = '0.04';
10             our $XS_VERSION = $VERSION;
11             $VERSION = eval $VERSION;
12              
13             XSLoader::load(__PACKAGE__, $XS_VERSION);
14              
15             our @EXPORT_OK = qw(product);
16              
17              
18             1;
19              
20             __END__