-
-
Save darbio/54852fc8bca4c47444c1 to your computer and use it in GitHub Desktop.
Revisions
-
pithyless created this gist
Mar 24, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,10 @@ class Integer N_BYTES = [42].pack('i').size N_BITS = N_BYTES * 16 MAX = 2 ** (N_BITS - 2) - 1 MIN = -MAX - 1 end p Integer::MAX #=> 4611686018427387903 p Integer::MAX.class #=> Fixnum p (Integer::MAX + 1).class #=> Bignum