Class: Float

Inherits:
Numeric
  • Object
show all
Defined in:
lib/bigdecimal/util.rb

Overview

bigdecimal/util extends the native Float class to provide the #to_d method.

When you require ‘bigdecimal/util’ in your application, this method will be available on Float objects.

Instance Method Summary collapse

Instance Method Details

#to_d(precision = nil) ⇒ Object

call-seq:

flt.to_d  -> bigdecimal

Convert flt to a BigDecimal and return it.

require 'bigdecimal'
require 'bigdecimal/util'

0.5.to_d
# => 0.5e0


44
45
46
# File 'lib/bigdecimal/util.rb', line 44

def to_d(precision=nil)
  BigDecimal(self, precision || Float::DIG)
end