File Coverage

blib/lib/Bit/Grep.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Bit::Grep;
2              
3             our $VERSION = '0.01';
4              
5 1     1   30473 use strict;
  1         3  
  1         46  
6 1     1   6 use warnings;
  1         2  
  1         102  
7              
8             require Exporter;
9             our @ISA = qw(Exporter);
10             our @EXPORT_OK = qw(bg_grep bg_sum bg_count_and_sum bg_count_sum_and_sum2 bg_avg);
11              
12             require XSLoader;
13             XSLoader::load('Bit::Grep', $VERSION);
14              
15             1;
16             __END__