File Coverage

blib/lib/Math/Derivative_XS.pm
Criterion Covered Total %
statement 12 13 92.3
branch n/a
condition n/a
subroutine 4 5 80.0
pod 1 1 100.0
total 17 19 89.4


line stmt bran cond sub pod time code
1             package Math::Derivative_XS;
2              
3 1     1   25107 use 5.010000;
  1         4  
  1         41  
4 1     1   6 use strict;
  1         1  
  1         33  
5 1     1   5 use warnings;
  1         6  
  1         50  
6              
7             require Exporter;
8 1     1   910 use Math::Derivative;
  1         561  
  1         199  
9              
10             our @ISA = qw(Exporter Math::Derivative);
11              
12             our %EXPORT_TAGS = ( 'all' => [ qw(
13             Derivative2
14             Derivative1
15             ) ] );
16              
17             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
18              
19             our @EXPORT = qw(
20            
21             );
22              
23             our $VERSION = '0.02';
24              
25             require XSLoader;
26             XSLoader::load('Math::Derivative_XS', $VERSION);
27              
28 0     0 1   sub Derivative1 { &Math::Derivative::Derivative1; };
29              
30             1;
31             __END__