Class: Float

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

Overview

BigDecimal utility library.

To use these functions, require 'bigdecimal/util'

The following methods are provided to convert other types to BigDecimals:

String#to_d -> BigDecimal
Float#to_d -> BigDecimal
Rational#to_d -> BigDecimal

The following method is provided to convert BigDecimals to other types:

BigDecimal#to_r -> Rational

Instance Method Summary collapse

Instance Method Details

#to_dObject



19
20
21
# File 'lib/bigdecimal/util.rb', line 19

def to_d
  BigDecimal(self.to_s)
end