diff options
author | P. J. McDermott <pj@pehjota.net> | 2017-01-05 00:06:28 (EST) |
---|---|---|
committer | P. J. McDermott <pj@pehjota.net> | 2017-01-05 00:06:28 (EST) |
commit | e641ebbdc772b5e32fd5293a81819bb2dafbce27 (patch) | |
tree | 5fa8d6891de38c1e781bdf8dd81a1380115bdfda /lib/Math/Decimal | |
parent | bb5ef9963467421857c2ac8eec720cea6a98abe7 (diff) | |
download | Math-Decimal-FastPP-e641ebbdc772b5e32fd5293a81819bb2dafbce27.zip Math-Decimal-FastPP-e641ebbdc772b5e32fd5293a81819bb2dafbce27.tar.gz Math-Decimal-FastPP-e641ebbdc772b5e32fd5293a81819bb2dafbce27.tar.bz2 |
lib/Math/Decimal/FastPP.pm: s/=item/=head2/
Diffstat (limited to 'lib/Math/Decimal')
-rw-r--r-- | lib/Math/Decimal/FastPP.pm | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/lib/Math/Decimal/FastPP.pm b/lib/Math/Decimal/FastPP.pm index 030b4e5..1cb3dc5 100644 --- a/lib/Math/Decimal/FastPP.pm +++ b/lib/Math/Decimal/FastPP.pm @@ -68,8 +68,6 @@ the common exponent of the input numbers. =head1 FUNCTIONS -=over 4 - =cut use strict; @@ -82,7 +80,7 @@ our @EXPORT = qw(dadd dmul drhtz drhfz); our $VERSION = "0.001"; -=item dadd() +=head2 dadd() $c = dadd($a, $b); @@ -119,7 +117,7 @@ sub dadd substr($cs, length($cs) - $ce); } -=item dmul() +=head2 dmul() $c = dmul($a, $b); @@ -147,7 +145,7 @@ sub dmul substr($cs, length($cs) - $ce); } -=item drhtz() +=head2 drhtz() $a = drhtz($a, $p); @@ -177,7 +175,7 @@ sub drhtz substr($as, length($as) - $_[1]); } -=item drhfz() +=head2 drhfz() $a = drhfz($a, $p); @@ -211,8 +209,6 @@ sub drhfz __END__ -=back - =head1 CAVEATS These arithmetic functions preserve all significant fractional digits, including |