File Coverage

blib/lib/Digest/xxHash64.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Digest::xxHash64;
2            
3 1     1   28335 use 5.008;
  1         4  
4 1     1   6 use strict;
  1         2  
  1         22  
5 1     1   5 use warnings;
  1         6  
  1         34  
6            
7 1     1   5 use Exporter qw( import );
  1         2  
  1         109  
8            
9             our %EXPORT_TAGS = ();
10             our @EXPORT_OK = qw( xxhash32 xxhash64 xxhash32_hex xxhash64_hex );
11             our @EXPORT = qw( );
12            
13             our $VERSION = our $XS_VERSION = '0.001_01';
14             $VERSION = eval $VERSION;
15            
16 1     1   5 use XSLoader;
  1         1  
  1         42  
17             XSLoader::load('Digest::xxHash64', $XS_VERSION);
18            
19             __PACKAGE__;
20             __END__