diff options
-rw-r--r-- | README | 17 | ||||
-rw-r--r-- | lib/Math/Decimal/FastPP.pm | 16 |
2 files changed, 17 insertions, 16 deletions
@@ -1,13 +1,14 @@ =head1 Math::Decimal::FastPP -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. - -This module is currently less complete than Perl's built-in arithmetic -and other decimal arithmetic modules. So far it only includes addition, -multiplication, and rounding functions. +Math::Decimal::FastPP provides a few common decimal arithmetic and +rounding functions written in pure Perl. The functions are of course +slower than Perl's built-in binary floating-point math, but they're +faster than L<Math::BigFloat> and other commonly used decimal math +modules. + +This module is currently less complete than Perl's built-in math and +other decimal math modules. So far it only includes addition, +multiplication, and two rounding functions. Despite the similar name and purpose, this module is not compatible with L<Math::Decimal>. diff --git a/lib/Math/Decimal/FastPP.pm b/lib/Math/Decimal/FastPP.pm index d140132..c00a16a 100644 --- a/lib/Math/Decimal/FastPP.pm +++ b/lib/Math/Decimal/FastPP.pm @@ -1,6 +1,6 @@ =head1 NAME -Math::Decimal::FastPP - Fast pure-Perl decimal arithmetic +Math::Decimal::FastPP - Fast pure-Perl decimal math =head1 SYNOPSIS @@ -12,14 +12,14 @@ Math::Decimal::FastPP - Fast pure-Perl decimal arithmetic =head1 DESCRIPTION -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. +Math::Decimal::FastPP provides a few common decimal arithmetic and rounding +functions written in pure Perl. The functions are of course slower than Perl's +built-in binary floating-point math, but they're faster than L<Math::BigFloat> +and other commonly used decimal math modules. -This module is currently less complete than Perl's built-in arithmetic and other -decimal arithmetic modules. So far it only includes addition, multiplication, -and rounding functions. +This module is currently less complete than Perl's built-in math and other +decimal math modules. So far it only includes addition, multiplication, and two +rounding functions. Despite the similar name and purpose, this module is not compatible with L<Math::Decimal>. |