summaryrefslogtreecommitdiffstats
path: root/lib
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2017-01-04 22:41:14 (EST)
committer P. J. McDermott <pj@pehjota.net>2017-01-04 22:41:14 (EST)
commit7ba5c52e490cb3e2075d8a6b0ce055cc00b27a8c (patch)
treebccba0a449958ec2f8144e0a9d0f0fa57785dd90 /lib
parent0191365bbe1589f904e1c5901156f1109c942100 (diff)
downloadMath-Decimal-FastPP-7ba5c52e490cb3e2075d8a6b0ce055cc00b27a8c.zip
Math-Decimal-FastPP-7ba5c52e490cb3e2075d8a6b0ce055cc00b27a8c.tar.gz
Math-Decimal-FastPP-7ba5c52e490cb3e2075d8a6b0ce055cc00b27a8c.tar.bz2
lib/Math/FastPPDecimal.pm: Rename to lib/Math/Decimal/FastPP.pm
Diffstat (limited to 'lib')
-rw-r--r--lib/Math/Decimal/FastPP.pm (renamed from lib/Math/FastPPDecimal.pm)8
1 files changed, 4 insertions, 4 deletions
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);