File Coverage

blib/lib/List/Flatten/XS.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package List::Flatten::XS;
2 6     6   73832 use strict;
  6         26  
  6         180  
3 6     6   24 use warnings;
  6         8  
  6         245  
4              
5             our $VERSION = '0.02';
6              
7 6     6   45 use XSLoader;
  6         12  
  6         389  
8             XSLoader::load(__PACKAGE__, $VERSION);
9              
10             require Exporter;
11             our @ISA = qw/Exporter/;
12             our @EXPORT_OK = qw/flatten/;
13              
14             1;
15             __END__