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   557044 use strict;
  7         86  
  7         230  
5 7     7   39 use utf8;
  7         14  
  7         66  
6 7     7   178 use warnings;
  7         13  
  7         287  
7              
8 7     7   36 use base q(Exporter);
  7         35  
  7         1555  
9              
10             our $VERSION = '0.013'; # TRIAL VERSION
11              
12             require XSLoader;
13             XSLoader::load('Text::SpeedyFx', $VERSION);
14              
15             1;
16              
17             __END__