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 7     7   409079 use strict;
  7         79  
  7         179  
5 7     7   32 use utf8;
  7         11  
  7         46  
6 7     7   134 use warnings;
  7         19  
  7         199  
7              
8 7     7   35 use base q(Exporter);
  7         11  
  7         1267  
9              
10             our $VERSION = '0.014'; # VERSION
11              
12             require XSLoader;
13             XSLoader::load('Text::SpeedyFx', $VERSION);
14              
15             1;
16              
17             __END__