File Coverage

blib/lib/Bit/Fast.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 Bit::Fast;
2              
3 1     1   20739 use strict;
  1         2  
  1         41  
4 1     1   8 use warnings;
  1         2  
  1         44  
5              
6             require Exporter;
7 1     1   6 use Config;
  1         6  
  1         190  
8              
9             our @ISA = qw(Exporter);
10              
11             my @funcs = qw(popcount);
12             if ($Config{longsize} == 8) {
13             push @funcs, qw(popcountl);
14             }
15              
16             our %EXPORT_TAGS = ( 'all' => \@funcs );
17              
18             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
19              
20             our $VERSION = '0.01';
21              
22             require XSLoader;
23             XSLoader::load('Bit::Fast', $VERSION);
24              
25             1;
26              
27             __END__