diff options
author | Nobuyoshi Nakada <[email protected]> | 2022-09-08 11:49:21 +0900 |
---|---|---|
committer | Nobuyoshi Nakada <[email protected]> | 2022-09-08 11:52:16 +0900 |
commit | 332d29df5342996ce153e65c3096f1b9027afe01 (patch) | |
tree | ff419dd051cc4488c071eccc54f9ecc0a8c95f99 /object.c | |
parent | b1efdcee6e27501b56d8e90a945d3301e06b48df (diff) |
[DOC] non-positive `base` in `Kernel#Integer` and `String#to_i`
Diffstat (limited to 'object.c')
-rw-r--r-- | object.c | 31 |
1 files changed, 27 insertions, 4 deletions
@@ -3175,6 +3175,11 @@ rb_opts_exception_p(VALUE opts, int default_value) * using +to_int+ first and +to_i+ second; * see below for exceptions. * + * With a non-zero +base+, +object+ must be a string or convertible + * to a string. + * + * ==== numeric objects + * * With integer argument +object+ given, returns +object+: * * Integer(1) # => 1 @@ -3186,6 +3191,8 @@ rb_opts_exception_p(VALUE opts, int default_value) * Integer(1.9) # => 1 # Rounds toward zero. * Integer(-1.9) # => -1 # Rounds toward zero. * + * ==== string objects + * * With string argument +object+ and zero +base+ given, * returns +object+ converted to an integer in base 10: * @@ -3193,32 +3200,48 @@ rb_opts_exception_p(VALUE opts, int default_value) * Integer('-100') # => -100 * * With +base+ zero, string +object+ may contain leading characters - * to specify the actual base: + * to specify the actual base (radix indicator): * * Integer('0100') # => 64 # Leading '0' specifies base 8. * Integer('0b100') # => 4 # Leading '0b', specifies base 2. * Integer('0x100') # => 256 # Leading '0x' specifies base 16. * - * With a non-zero +base+ (in range 2..36) given - * (in which case +object+ must be a string), - * returns +object+ converted to an integer in the given base: + * With a positive +base+ (in range 2..36) given, returns +object+ + * converted to an integer in the given base: * * Integer('100', 2) # => 4 * Integer('100', 8) # => 64 * Integer('-100', 16) # => -256 * + * With a negative +base+ (in range -36..-2) given, returns +object+ + * converted to an integer in the radix indicator if exists or + * +-base+: + * + * Integer('0x100', -2) # => 256 + * Integer('100', -2) # => 4 + * Integer('0b100', -8) # => 4 + * Integer('100', -8) # => 64 + * Integer('0o100', -10) # => 64 + * Integer('100', -10) # => 100 + * + * +base+ -1 is equal the -10 case. + * * When converting strings, surrounding whitespace and embedded underscores * are allowed and ignored: * * Integer(' 100 ') # => 100 * Integer('-1_0_0', 16) # => -256 * + * ==== other classes + * * Examples with +object+ of various other classes: * * Integer(Rational(9, 10)) # => 0 # Rounds toward zero. * Integer(Complex(2, 0)) # => 2 # Imaginary part must be zero. * Integer(Time.now) # => 1650974042 * + * ==== keywords + * * With optional keyword argument +exception+ given as +true+ (the default): * * - Raises TypeError if +object+ does not respond to +to_int+ or +to_i+. |