File Coverage

blib/lib/Hash/Util/Pick.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Hash::Util::Pick;
2 5     5   962581 use 5.008001;
  5         23  
3 5     5   36 use strict;
  5         39  
  5         172  
4 5     5   32 use warnings;
  5         14  
  5         552  
5              
6             our $VERSION = "0.15";
7              
8 5     5   34 use Exporter qw/import/;
  5         39  
  5         395  
9             our @EXPORT_OK = qw/
10             pick
11             pick_by
12             omit
13             omit_by
14             /;
15              
16 5     5   77 use XSLoader;
  5         23  
  5         379  
17             XSLoader::load(__PACKAGE__, $VERSION);
18              
19             1;
20             __END__