Created
June 24, 2009 09:34
-
-
Save trans/135123 to your computer and use it in GitHub Desktop.
Fixnum Constants
This file contains 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 characters
# Fixnum Constants | |
# Constants providing the numerical limitations of Fixnum class. | |
# | |
class Fixnum | |
N_BYTES = [42].pack('i').size | |
N_BITS = N_BYTES * 8 | |
MAX = 2 ** (N_BITS - 2) - 1 | |
MIN = -MAX - 1 | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment