File Coverage

blib/lib/Bit/Vector.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              
2             ###############################################################################
3             ## ##
4             ## Copyright (c) 1995 - 2004 by Steffen Beyer. ##
5             ## All rights reserved. ##
6             ## ##
7             ## This package is free software; you can redistribute it ##
8             ## and/or modify it under the same terms as Perl itself. ##
9             ## ##
10             ###############################################################################
11              
12             package Bit::Vector;
13              
14 21     21   315 use strict;
  21         2326  
  21         311  
15 21     21   300 use vars qw(@ISA @EXPORT @EXPORT_OK $VERSION @CONFIG);
  21         186  
  21         333  
16              
17             require Exporter;
18             require DynaLoader;
19              
20             @ISA = qw(Exporter DynaLoader);
21              
22             @EXPORT = qw();
23              
24             @EXPORT_OK = qw();
25              
26             $VERSION = '6.4';
27              
28             bootstrap Bit::Vector $VERSION;
29              
30             1;
31              
32             __END__
33            
34