File Coverage

blib/lib/Data/DisjointSet/Shared.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 Data::DisjointSet::Shared;
2 2     2   199547 use strict;
  2         3  
  2         78  
3 2     2   9 use warnings;
  2         4  
  2         331  
4             our $VERSION = '0.01';
5             require XSLoader;
6             XSLoader::load('Data::DisjointSet::Shared', $VERSION);
7              
8             *same = \&connected;
9             *merge = \&union;
10             *sets = \&num_sets;
11             *clear = \&reset;
12              
13             1;
14             __END__