in reply to Re: "force string context"?
in thread "force string context"?
If you need to handle integers bigger than 2**31 (> 2147483646) you should use Math::BigIntIf your integers are less than about 2**51, there will be no loss of significant digits (because Perl will automatically start using doubles). If your integers will be less than 2**63, I'd prefer a 64int perl over Math::BigInt. (In fact, I always compile my perls to turn on 64 bit integer support).
Abigail
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: "force string context"?
by gmpassos (Priest) on Apr 16, 2004 at 20:20 UTC | |
by Abigail-II (Bishop) on Apr 16, 2004 at 21:21 UTC |