Class: Fixnum
- Inherits:
-
Object
- Object
- Fixnum
- Defined in:
- lib/cheftacular/helper.rb
Instance Method Summary collapse
Instance Method Details
#digits(base = 10) ⇒ Object
416 417 418 419 |
# File 'lib/cheftacular/helper.rb', line 416 def digits(base = 10) quotient, remainder = divmod(base) (quotient > 0 ? quotient.digits : []) + [remainder] end |