File Coverage

blib/lib/Devel/Pointer.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Devel::Pointer;
2              
3 1     1   7043 use 5.006;
  1         5  
  1         68  
4 1     1   6 use strict;
  1         2  
  1         38  
5 1     1   6 use warnings;
  1         2  
  1         162  
6              
7             require Exporter;
8             require DynaLoader;
9              
10             our @ISA = qw(Exporter DynaLoader);
11              
12             # Items to export into callers namespace by default. Note: do not export
13             # names by default without a very good reason. Use EXPORT_OK instead.
14             # Do not simply export all your public functions/methods/constants.
15              
16             our @EXPORT = qw(
17             address_of
18             deref
19             unsmash_sv
20             unsmash_av
21             unsmash_hv
22             unsmash_cv
23             );
24             our $VERSION = '1.00';
25              
26             bootstrap Devel::Pointer $VERSION;
27              
28             # Preloaded methods go here.
29              
30             1;
31             __END__