File Coverage

blib/lib/Text/SpeedyFx.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 Text::SpeedyFx;
2             # ABSTRACT: tokenize/hash large amount of strings efficiently
3              
4 6     6   147219 use strict;
  6         15  
  6         266  
5 6     6   35 use utf8;
  6         7  
  6         42  
6 6     6   185 use warnings;
  6         10  
  6         243  
7              
8 6     6   27 use base q(Exporter);
  6         12  
  6         1083  
9              
10             our $VERSION = '0.012'; # VERSION
11              
12             require XSLoader;
13             XSLoader::load('Text::SpeedyFx', $VERSION);
14              
15             1;
16              
17             __END__