In Files

  • bigdecimal/lib/bigdecimal/util.rb

Parent

Methods

Class/Module Index [+]

Quicksearch

Integer

Public Instance Methods

to_d → bigdecimal click to toggle source

Returns the value of int as a BigDecimal.

require 'bigdecimal'
require 'bigdecimal/util'

42.to_d   # => 0.42e2

See also BigDecimal::new.

 
               # File bigdecimal/lib/bigdecimal/util.rb, line 23
def to_d
  BigDecimal(self)
end