From 7ba5c52e490cb3e2075d8a6b0ce055cc00b27a8c Mon Sep 17 00:00:00 2001 From: P. J. McDermott Date: Wed, 04 Jan 2017 22:41:14 -0500 Subject: lib/Math/FastPPDecimal.pm: Rename to lib/Math/Decimal/FastPP.pm --- diff --git a/MANIFEST b/MANIFEST index 2ec16b6..cf8247f 100644 --- a/MANIFEST +++ b/MANIFEST @@ -1,6 +1,6 @@ COPYING MANIFEST Makefile.PL -lib/Math/FastPPDecimal.pm +lib/Math/Decimal/FastPP.pm t/00_compile.t t/20_nj-st-75-2017.t diff --git a/lib/Math/FastPPDecimal.pm b/lib/Math/Decimal/FastPP.pm index 8da6a2e..ad1e7f8 100644 --- a/lib/Math/FastPPDecimal.pm +++ b/lib/Math/Decimal/FastPP.pm @@ -1,10 +1,10 @@ =head1 NAME -Math::FastPPDecimal - Fast pure-Perl decimal arithmetic +Math::Decimal::FastPP - Fast pure-Perl decimal arithmetic =head1 SYNOPSIS - use Math::FastPPDecimal; + use Math::Decimal::FastPP; $a = dadd($a, "1.23"); # $a += 1.23 $c = dmul($a, $b); # $c = $a * $b @@ -12,7 +12,7 @@ Math::FastPPDecimal - Fast pure-Perl decimal arithmetic =head1 DESCRIPTION -Math::FastPPDecimal provides a few common decimal arithmetic functions written +Math::Decimal::FastPP provides a few common decimal arithmetic functions written in pure Perl. The functions are of course slower than Perl's built-in binary floating-point arithmetic, but they're faster than L and other commonly used decimal arithmetic modules. @@ -30,7 +30,7 @@ and rounding functions. use strict; use warnings; -package Math::FastPPDecimal; +package Math::Decimal::FastPP; use Exporter qw(import); our @EXPORT = qw(dadd dmul drhtz drhfz); -- cgit v0.9.1