File Coverage

blib/lib/List/Slice.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package List::Slice;
2             # ABSTRACT: Slice-like operations on lists
3             $List::Slice::VERSION = '0.003';
4 1     1   327 use strict;
  1         1  
  1         63  
5             require Exporter;
6              
7             our @ISA = qw(Exporter);
8             our @EXPORT_OK = qw( head tail );
9              
10             require XSLoader;
11             XSLoader::load('List::Slice', $List::Slice::VERSION);
12              
13             1;
14              
15             __END__