in reply to Re^2: Sorting Puzzle (just sort)
in thread Sorting Puzzle

But why would you recommend bigint rather than Math::BigInt in this case???

Replies are listed 'Best First'.
Re^4: Sorting Puzzle (just sort)
by jdporter (Paladin) on Feb 21, 2007 at 01:56 UTC

    I have no reason; I grabbed the first one I found. If other "big math" modules work as well, great!

      bigint is a viral make-everything-a-Math::BigInt layer for Math::BigInt; if you don't want that (and usually you don't), selectively using Math::BigInt->new('string-of-digits') to get an overloaded object is a lot less intrusive.