Class: Integer

Inherits:
Object show all
Defined in:
lib/shenanigans/integer/string_length.rb

Instance Method Summary collapse

Instance Method Details

#string_lengthObject

Returns the length of the number's string representation.

Examples:

0.string_length #=> 1
123.string_length #=> 3
-1.string_length #=> 2


7
8
9
10
11
12
# File 'lib/shenanigans/integer/string_length.rb', line 7

def string_length
  return 1 if zero?

  len = Math.log10(abs).floor.next
  positive? ? len : len.next
end