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   111839 use 5.008001;
  5         19  
3 5     5   27 use strict;
  5         11  
  5         88  
4 5     5   23 use warnings;
  5         9  
  5         186  
5              
6             our $VERSION = "0.12";
7              
8 5     5   24 use Exporter qw/import/;
  5         18  
  5         213  
9             our @EXPORT_OK = qw/
10             pick
11             pick_by
12             omit
13             omit_by
14             /;
15              
16 5     5   26 use XSLoader;
  5         14  
  5         161  
17             XSLoader::load(__PACKAGE__, $VERSION);
18              
19             1;
20             __END__