Subject: | bfac does not work as described |
$a->bfac() does not change $a, you need to use $a = $a->bfac() instead.
Example code below:
use Math::GMP;
my $a = Math::GMP->new(5);
$a->bfac();
print $a; # prints 5
Output:
5
Expected output:
120
This queue is for tickets about the Math-GMP CPAN distribution.
The Basics
People
|
Bug Information
|