File Coverage

blib/lib/Digest/MurmurHash2/Neutral.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 Digest::MurmurHash2::Neutral;
2             $Digest::MurmurHash2::Neutral::VERSION = '0.001000';
3             # ABSTRACT: Perl XS interface to the endian neutral MurmurHash2 algorithm
4              
5 2     2   26952 use strict;
  2         4  
  2         44  
6 2     2   4 use warnings;
  2         2  
  2         41  
7 2     2   7 use base 'Exporter';
  2         2  
  2         208  
8              
9             our @EXPORT_OK = ('murmur_hash2_neutral');
10              
11             require XSLoader;
12             XSLoader::load('Digest::MurmurHash2::Neutral');
13              
14             1;
15              
16             __END__