123456789_123456789_123456789_123456789_123456789_

Class: Integer

Relationships & Source Files
Super Chains via Extension / Inclusion / Inheritance
Class Chain:
self, ::Numeric
Instance Chain:
self, ::Numeric
Inherits: Numeric
Defined in: lib/bigdecimal/util.rb

Instance Method Summary

Instance Method Details

#to_dbigdecimal

Returns the value of int as a ::BigDecimal.

require 'bigdecimal'
require 'bigdecimal/util'

42.to_d   # => 0.42e2

See also Kernel.BigDecimal.

[ GitHub ]

  
# File 'lib/bigdecimal/util.rb', line 23

def to_d
  BigDecimal(self)
end