I need to be able to determine a systems maximum integer in Ruby. Anybody know how, or if it's possible?
|
feedback
|
|
Ruby automatically converts integers to a large integer class when they overflow, so there's (practically) no limit to how big they can be. If you are looking for the machine's size, i.e. 64- or 32-bit, I found this trick at ruby-forum.com:
Edit: If you are looking for the size of Fixnum objects (integers small enough to store in a single machine word), you can call | |||||||
feedback
|
| |||||||||||
feedback
|
|
Reading the friendly manual? Who'd want to do that?
| |||
feedback
|
|
In ruby Fixnums are automatically converted to Bignums. To find the highest possible Fixnum you could do something like this:
Shamelessly ripped from a ruby-talk discussion. Look there for more details. | |||||
feedback
|