NAME
SYNOPSIS
DESCRIPTIONuse integer vs. use bigint
Options
Math Library
Internal Format
Sign
Method calls
Methods
CAVEATS
MODULES USED
EXAMPLES
LICENSE
SEE ALSO
AUTHORS
NAME
bigint - Transparent BigInteger support for Perl
SYNOPSIS
use bigint;
$x = 2 + 4.5,"\n"; # BigInt 6
print 2 ** 512,"\n"; # really is what you think it is
print inf + 42,"\n"; # inf
print NaN * 7,"\n"; # NaN
print hex("0x1234567890123490"),"\n"; # Perl v5.10.0 or later
{
no bigint;
print 2 ** 256,"\n"; #