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   654975 use 5.008001;
  5         15  
3 5     5   19 use strict;
  5         17  
  5         91  
4 5     5   13 use warnings;
  5         24  
  5         289  
5              
6             our $VERSION = "0.16";
7              
8 5     5   19 use Exporter qw/import/;
  5         15  
  5         247  
9             our @EXPORT_OK = qw/
10             pick
11             pick_by
12             omit
13             omit_by
14             /;
15              
16 5     5   32 use XSLoader;
  5         11  
  5         244  
17             XSLoader::load(__PACKAGE__, $VERSION);
18              
19             1;
20             __END__