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.09';
4              
5 1     1   15207 use strict;
  1         2  
  1         36  
6 1     1   4 use warnings;
  1         2  
  1         26  
7              
8 1     1   4 use Exporter qw(import);
  1         4  
  1         61  
9             our @EXPORT = qw(some_int64 uint64_sqr int64_addmul uint64_rand sv_seti64 sv_setu64);
10              
11              
12             require XSLoader;
13             XSLoader::load('Math::Int64::C_API::Sample', $VERSION);
14              
15              
16             1;
17             __END__