NAME

FP::BigInt

SYNOPSIS

use FP::Equal 'is_equal'; use FP::Show;
use FP::BigInt;

is_equal ref(bigint(13)), 'Math::BigInt';
is_equal "".(bigint(10)**20), '100000000000000000000';
is_equal bigint(13) / bigint(10), bigint('1');

is show(bigint(7)), "bigint('7')";

DESCRIPTION

Loads Math::BigInt, monkey patches FP_Show_show and FP_Equal_equal methods into it, and exports the bigint constructor function.

SEE ALSO

Math::BigInt

FP::Abstract::Show, FP::Abstract::Equal -- implemented protocols