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   321920 use 5.008001;
  5         53  
3 5     5   25 use strict;
  5         8  
  5         99  
4 5     5   23 use warnings;
  5         8  
  5         239  
5              
6             our $VERSION = "0.13";
7              
8 5     5   37 use Exporter qw/import/;
  5         9  
  5         304  
9             our @EXPORT_OK = qw/
10             pick
11             pick_by
12             omit
13             omit_by
14             /;
15              
16 5     5   32 use XSLoader;
  5         10  
  5         525  
17             XSLoader::load(__PACKAGE__, $VERSION);
18              
19             1;
20             __END__