projects
/
p5sagit/Devel-PeekPoke.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
a338e9c5b297717a12a83ba1c29d6821b97fc0b7
[p5sagit/Devel-PeekPoke.git]
/
lib
/
Devel
/
PeekPoke
/
BigInt.pm
1
package # hide from PAUSE
2
Devel::PeekPoke::BigInt;
3
4
use strict;
5
use warnings;
6
7
use base 'Math::BigInt';
8
9
sub as_unmarked_hex { substr ( shift->as_hex, 2 ) }
10
11
1;