File Coverage

blib/lib/List/SkipList.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1             package List::SkipList::Node;
2            
3 1     1   827 use base 'Algorithm::SkipList::Node';
  1         2  
  1         498  
4            
5             1;
6            
7             package List::SkipList::Header;
8            
9 1     1   6 use base 'Algorithm::SkipList::Header';
  1         2  
  1         500  
10            
11             1;
12            
13             package List::SkipList;
14            
15 1     1   6 use base 'Algorithm::SkipList';
  1         2  
  1         754  
16            
17             our $VERSION = '0.74';
18             # $VERSION = eval $VERSION;
19            
20 1     1   6 use Carp qw( carp );
  1         1  
  1         46  
21            
22             BEGIN {
23 1     1   23 carp "The List::SkipList namespace is deprecated; use Algorithm::SkipList";
24             }
25            
26             1;
27            
28             __END__