1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36
|
NAME
Data::Integer - details of the native integer data type
DESCRIPTION
This module is about the native integer numerical data type. A native
integer is one of the types of datum that can appear in the numeric part
of a Perl scalar. This module supplies constants describing the native
integer type.
There are actually two native integer representations: signed and
unsigned. Both are handled by this module.
INSTALLATION
perl Makefile.PL
make
make test
make install
AUTHOR
Andrew Main (Zefram) <zefram@fysh.org>
Currently maintained by Robert Rothenberg <rrwo@cpan.org>
COPYRIGHT
Copyright (C) 2007, 2010, 2015, 2017, 2025
Andrew Main (Zefram) <zefram@fysh.org>
LICENSE
This module is free software; you can redistribute it and/or modify it
under the same terms as Perl itself.
|