File Coverage

blib/lib/Ref/Explicit.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod 2 2 100.0
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Ref::Explicit;
2             BEGIN {
3 1     1   101904 $Ref::Explicit::VERSION = '0.001';
4             }
5              
6             # ABSTRACT: Keywords to create arrayrefs and hashrefs
7              
8 1     1   11 use strict;
  1         2  
  1         36  
9 1     1   6 use warnings;
  1         3  
  1         31  
10              
11 1     1   6 use base 'Exporter';
  1         2  
  1         194  
12              
13             our (@EXPORT, @EXPORT_OK);
14              
15             @EXPORT = qw(arrayref hashref);
16             @EXPORT_OK = qw(arrayref hashref);
17              
18 2     2 1 1095 sub arrayref { \@_ }
19              
20 2     2 1 16 sub hashref { +{@_} }
21              
22             1;
23              
24              
25             __END__