File Coverage

blib/lib/Algorithm/StringHash/FromCSharp35/XS.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Algorithm::StringHash::FromCSharp35::XS;
2              
3 2     2   49326 use strict;
  2         6  
  2         76  
4 2     2   12 use warnings;
  2         4  
  2         318  
5              
6             require Exporter;
7              
8             our @ISA = qw(Exporter);
9              
10             our %EXPORT_TAGS = ( 'all' => [ qw( ) ] );
11             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
12             our @EXPORT = qw(GetHashCode);
13             our $VERSION = '0.04';
14              
15             require XSLoader;
16             XSLoader::load('Algorithm::StringHash::FromCSharp35::XS', $VERSION);
17              
18             1;
19             __END__