Math-BigInt

Math::BigInt::Constant - arbitrarily big integer constants

INSTALLATION

To install this module, unpack the distribution file, and run the following
commands:

    perl Makefile.PL
    make
    make test
    make install

SUPPORT AND DOCUMENTATION

After installing, you can find documentation for these modules with the
perldoc command.

    perldoc Math::BigInt::Constant

You can also look for information at:

    RT, CPAN's request tracker
        http://rt.cpan.org/NoAuth/Bugs.html?Dist=Math-BigInt-Constant

    AnnoCPAN, Annotated CPAN documentation
        http://annocpan.org/dist/Math-BigInt-Constant

    CPAN Ratings
        http://cpanratings.perl.org/d/Math-BigInt-Constant

    Search CPAN
        http://search.cpan.org/dist/Math-BigInt-Constant

COPYRIGHT AND LICENCE

Copyright 2001-2007 Tels, L<http://bloodgate.com>.

Copyright 2016- Peter John Acklam L<pjacklam@online.no>.

This program is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.


(C) ..--- ----- ----- .--- - ..--- by - . .-.. ... .-.-.-  All rights reserved.

Requires new version of Math::BigInt and Math::BigFloat as found on CPAN.

This package allows you to store constant Math::BigInts like this:

	use Math::BigInt::Constant;

	my $x = Math::BigInt::Constant->new(2);

	print "$x\n";			# okay, prints 2
	print $x+2,"\n";		# okay, prints 4
	print $x++,"\n";		# not okay, would modify $x

Please send me test-reports, your experiences with this and your ideas - I love
to hear about my work!

Tels <http://bloodgate.com/>
