File Coverage

blib/lib/Math/Basic/XS.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Math::Basic::XS;
2              
3 2     2   236574 use 5.006;
  2         7  
4 2     2   12 use strict;
  2         7  
  2         60  
5 2     2   7 use warnings;
  2         3  
  2         114  
6              
7             our $VERSION = '0.05';
8              
9 2     2   8 use base qw/Import::Export/;
  2         5  
  2         1016  
10              
11             our %EX = (
12             sum => [qw/all/],
13             min => [qw/all/],
14             max => [qw/all/],
15             mean => [qw/all/],
16             median => [qw/all/],
17             mode => [qw/all/]
18             );
19              
20             require XSLoader;
21             XSLoader::load('Math::Basic::XS', $VERSION);
22              
23             1;
24              
25             __END__