Newer
Older
0.007 2025-04-13 10:47 Europe/London
[Documentation]
- Updated maintainer information.
- Reformatted Changes to conform to CPAN::Changes::Spec.
- Added a security policy.
[Toolchain]
- Switched to use Makefile.PL.
- Cleaned up MANIFEST.
0.006 2017-08-07
- no longer include a Makefile.PL in the distribution
- in documentation, use four-column indentation for all verbatim
- in META.{yml,json}, point to public bug tracker
- avoid a spurious warning generated by new Perls starting with
- in documentation of {s,u}int_msub(), correct description that said
"addition" instead of "subtraction"
- in synopsis, correct number of parameters for {s,u}int_mux()
- use simpler "parent" pragma in place of "base"
- in documentation, use the term "truth value" instead of the less
- check for required Perl version at runtime
- in Build.PL, explicitly declare configure-time requirements
gregor herrmann
committed
- add natint_hex() and hex_natint() functions to output and input
gregor herrmann
committed
integer values in hexadecimal
- add functions {n,s,u}int() to check and canonicalise native integer
gregor herrmann
committed
function arguments
- add functions nint_is_{s,u}int() for classification of native integers
gregor herrmann
committed
- add functions {n,s,u}int_sgn(), {n,s,u}int_abs(), {n,s,u}int_cmp(),
gregor herrmann
committed
{n,s,u}int_min(), {n,s,u}int_max(), {n,s,u}int_neg(),
{n,s,u}int_add(), {n,s,u}int_sub() for ordinary arithmetic on
native integers
- add functions {s,u}int_shl(), {s,u}int_shr(), {s,u}int_rol(),
gregor herrmann
committed
{s,u}int_ror() for bit shifts on native integers
- add functions {n,u}int_bits_as_sint() and {n,s}int_bits_as_uint()
gregor herrmann
committed
for format conversions among native integers
- add functions {s,u}int_not(), {s,u}int_and(), {s,u}int_nand(),
gregor herrmann
committed
{s,u}int_andn(), {s,u}int_or(), {s,u}int_nor(), {s,u}int_orn(),
{s,u}int_xor(), {s,u}int_nxor(), {s,u}int_mux() for bitwise operations
on native integers
- add functions {s,u}int_madd(), {s,u}int_msub(), {s,u}int_cadd(),
gregor herrmann
committed
{s,u}int_csub(), {s,u}int_sadd(), {s,u}int_ssub() for machine-code
style arithmetic on native integers
- add short names (m{in,ax}_{n,s,u}int) for the extreme-value constants
gregor herrmann
committed
- revise the way the constants are generated to avoid floating point
gregor herrmann
committed
arithmetic
- make extreme-value constants into non-constant functions that return
gregor herrmann
committed
fresh integer values, to avoid problems with Perl's side effects
when an integer value is used in floating point arithmetic
- in documentation, discuss Perl's problems in handling native integer
gregor herrmann
committed
values
- in documentation, describe the integer formats
gregor herrmann
committed
- test consistency of constants in a more reliable and stringent manner,
gregor herrmann
committed
using primarily integer arithmetic
- rearrange module source to avoid the need for the DATA filehandle
gregor herrmann
committed
Damyan Ivanov
committed
Damyan Ivanov
committed
- build with Module::Build instead of ExtUtils::MakeMaker
Damyan Ivanov
committed
Damyan Ivanov
committed
Damyan Ivanov
committed
- in documentation, separate "license" section from "copyright" section
Damyan Ivanov
committed
- bugfix: strategic use of "use integer" to make the arithmetic work
right on perl 5.6
- reference Data::Float, Scalar::Number, and perlnumber(1) in
documentation