diff options
-rw-r--r-- | MANIFEST | 2 | ||||
-rw-r--r-- | lib/Math/Decimal/FastPP.pm (renamed from lib/Math/FastPPDecimal.pm) | 8 |
2 files changed, 5 insertions, 5 deletions
@@ -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<Math::BigFloat> 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); |