File Coverage

blib/lib/Devel/PeekPoke/BigInt.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 14 15 93.3


line stmt bran cond sub pod time code
1             package # hide from PAUSE
2             Devel::PeekPoke::BigInt;
3              
4 1     1   6 use strict;
  1         3  
  1         42  
5 1     1   5 use warnings;
  1         2  
  1         38  
6              
7 1     1   7 use base 'Math::BigInt';
  1         2  
  1         7393  
8              
9 19     19 0 2739 sub as_unmarked_hex { substr ( shift->as_hex, 2 ) }
10              
11             1;