summaryrefslogtreecommitdiff
path: root/dist/Math-BigInt
diff options
context:
space:
mode:
authorFlorian Ragwitz <rafl@debian.org>2010-09-10 07:25:24 +0200
committerFlorian Ragwitz <rafl@debian.org>2010-09-10 07:25:24 +0200
commitfdd5930033ef713aafcb2ab0fc187d37eb216ea5 (patch)
tree84013ce698746a7e56a213d54aa92b9f479db600 /dist/Math-BigInt
parentfd9ea5b02ebf80981bd369d0201522a386c19bed (diff)
downloadperl-fdd5930033ef713aafcb2ab0fc187d37eb216ea5.tar.gz
Lowest common multiple, not multiplicator
Diffstat (limited to 'dist/Math-BigInt')
-rw-r--r--dist/Math-BigInt/lib/Math/BigInt.pm18
1 files changed, 9 insertions, 9 deletions
diff --git a/dist/Math-BigInt/lib/Math/BigInt.pm b/dist/Math-BigInt/lib/Math/BigInt.pm
index 23fedbe6cb..9a6841e52b 100644
--- a/dist/Math-BigInt/lib/Math/BigInt.pm
+++ b/dist/Math-BigInt/lib/Math/BigInt.pm
@@ -1374,11 +1374,11 @@ sub bexp
else { $x = $u; }
}
-sub blcm
- {
+sub blcm
+ {
# (BINT or num_str, BINT or num_str) return BINT
# does not modify arguments, but returns new object
- # Lowest Common Multiplicator
+ # Lowest Common Multiple
my $y = shift; my ($x);
if (ref($y))
@@ -3211,14 +3211,14 @@ Math::BigInt - Arbitrary size integer/float math package
$x->bfloor(); # return integer less or equal than $x
$x->bceil(); # return integer greater or equal than $x
-
+
# The following do not modify their arguments:
# greatest common divisor (no OO style)
my $gcd = Math::BigInt::bgcd(@values);
- # lowest common multiplicator (no OO style)
- my $lcm = Math::BigInt::blcm(@values);
-
+ # lowest common multiple (no OO style)
+ my $lcm = Math::BigInt::blcm(@values);
+
$x->length(); # return number of digits in number
($xl,$f) = $x->length(); # length of number and length of fraction part,
# latter is always 0 digits long for BigInts
@@ -3911,8 +3911,8 @@ does change $x in BigFloat.
=head2 blcm()
- blcm(@values); # lowest common multiplicator (no OO style)
-
+ blcm(@values); # lowest common multiple (no OO style)
+
head2 length()
$x->length();