File Coverage

blib/lib/Math/Int64/C_API/Sample.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 Math::Int64::C_API::Sample;
2              
3             our $VERSION = '0.08';
4              
5 1     1   33501 use strict;
  1         3  
  1         47  
6 1     1   6 use warnings;
  1         2  
  1         44  
7              
8 1     1   5 use Exporter qw(import);
  1         6  
  1         101  
9             our @EXPORT = qw(some_int64 uint64_sqr int64_addmul uint64_rand);
10              
11              
12             require XSLoader;
13             XSLoader::load('Math::Int64::C_API::Sample', $VERSION);
14              
15              
16             1;
17             __END__