"Dave Cross via RT" <bug-Number-Fraction@rt.cpan.org> writes:
Show quoted text>
> Please take a look and let me know what you think.
Looks good.
I noticed a typo in the pod for exp(),
Currently this only works if the right hand operand is an integer
(or a Number::Fraction object that has a numerator of 1).
which would be "denominator of 1" would it?
Incidentally it may be better to do the isa() checks as
blessed($x) && $x->isa(whatever)
to allow for subclasses or objects which play tricks in an isa method.
Dunno if such tricks work very well in practice, but usually it's good
to call isa as a method.