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 7     7   378914 use strict;
  7         72  
  7         192  
3 7     7   37 use warnings;
  7         11  
  7         265  
4              
5             our $VERSION = '0.05';
6              
7 7     7   37 use XSLoader;
  7         12  
  7         501  
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__