Class: Integer

Inherits:
Object show all
Defined in:
lib/ruby/jruby_hack.rb

Instance Method Summary collapse

Instance Method Details

#to_dBigDecimal

Converts the integer to a BigDecimal

Examples:

10.to_d   #=> BigDecimal("10")

Returns:



569
570
571
# File 'lib/ruby/jruby_hack.rb', line 569

def to_d
  BigDecimal(to_s)
end