NAME
Math::Int128 - Manipulate 128 bits integers in Perl
SYNOPSIS
use Math::Int128 qw(int128);
my $i = int128(1);
my $j = $i << 100;
my $k = int128("1234567890123456789000000");
print($i + $j * 1000000);
DESCRIPTION
This module adds support for 128 bit integers, signed and unsigned, to Perl.
INSTALL
In order to compile this module, the development version of GCC (which will eventually become GCC 4.6) that includes support for 128 bits arithmetic is required.
It can be installed as follows:
$ svn checkout svn://gcc.gnu.org/svn/gcc/trunk gcc
$ cd gcc
$ ./configure --disable-bootstrap --prefix=/usr/local/gcc
$ make
$ sudo make install
Then, to compile Math::Int128
$ cd ~/Math-Int128-*
$ perl Makefile CC=/usr/local/gcc/bin/gcc
$ make
$ sudo make install
API
See Math::Int64. This module provides a similar set of functions, just s/64/128/.
COPYRIGHT AND LICENSE
Copyright (C) 2007, 2009, 2011 by Salvador Fandino (sfandino@yahoo.com)
This library is free software; you can redistribute it and/or modify it under the same terms as Perl itself, either Perl version 5.10.1 or, at your option, any later version of Perl 5 you may have available.