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   135830 use strict;
  2         14  
  2         62  
4 2     2   11 use warnings;
  2         4  
  2         70  
5              
6 2     2   11 use Exporter qw(import);
  2         4  
  2         53  
7 2     2   10 use XSLoader;
  2         4  
  2         187  
8              
9             our $VERSION = '0.06';
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__