File Coverage

blib/lib/String/Index.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 String::Index;
2              
3 1     1   21902 use 5.008;
  1         3  
  1         57  
4 1     1   5 use strict;
  1         1  
  1         26  
5 1     1   4 use warnings;
  1         6  
  1         90  
6              
7             require Exporter;
8              
9             our @ISA = qw(Exporter);
10              
11             our @EXPORT_OK = qw( cindex ncindex crindex ncrindex );
12              
13             our $VERSION = '0.02';
14              
15             require XSLoader;
16             XSLoader::load('String::Index', $VERSION);
17              
18             1;
19             __END__