File Coverage

blib/lib/Statistics/EfficiencyCI.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 Statistics::EfficiencyCI;
2              
3 1     1   25928 use 5.008001;
  1         4  
  1         42  
4 1     1   6 use strict;
  1         3  
  1         41  
5 1     1   5 use warnings;
  1         6  
  1         146  
6              
7             our $VERSION = '0.07';
8              
9             require Exporter;
10             our @ISA = qw(Exporter);
11             our @EXPORT_OK = qw(
12             efficiency_ci
13             log_gamma
14             beta_ab
15             ibetai
16             beta_cf
17             );
18             our @EXPORT_TAGS = ('all' => \@EXPORT_OK);
19              
20             require XSLoader;
21             XSLoader::load('Statistics::EfficiencyCI', $VERSION);
22              
23             1;
24             __END__