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   131653 use 5.008001;
  5         13  
3 5     5   19 use strict;
  5         14  
  5         114  
4 5     5   24 use warnings;
  5         4  
  5         224  
5              
6             our $VERSION = "0.11";
7              
8 5     5   19 use Exporter qw/import/;
  5         11  
  5         259  
9             our @EXPORT_OK = qw/
10             pick
11             pick_by
12             omit
13             omit_by
14             /;
15              
16 5     5   29 use XSLoader;
  5         6  
  5         179  
17             XSLoader::load(__PACKAGE__, $VERSION);
18              
19             1;
20             __END__