File Coverage

lib/Math/Random/Xorshift.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             package Math::Random::Xorshift;
2              
3 3     3   179155 use 5.008000;
  3         11  
  3         1555  
4 3     3   24 use strict;
  3         4  
  3         119  
5 3     3   26 use warnings;
  3         8  
  3         105  
6 3     3   3064 use Exporter::Lite;
  3         2500  
  3         18  
7              
8             our $VERSION = '0.05';
9             our @EXPORT_OK = qw/srand rand irand/;
10              
11             require XSLoader;
12             XSLoader::load('Math::Random::Xorshift', $VERSION);
13              
14             1;
15             __END__