Class: String
Relationships & Source Files | |
Inherits: | Object |
Defined in: | ext/bigdecimal/lib/bigdecimal/util.rb |
Overview
::BigDecimal extends the native String
class to provide the #to_d method.
When you require ::BigDecimal in your application, this method will be available on String
objects.
Instance Method Summary
-
#to_d ⇒ bigdecimal
Convert
string
to a ::BigDecimal and return it.
Instance Method Details
#to_d ⇒ bigdecimal
Convert string
to a ::BigDecimal and return it.
require 'bigdecimal'
require 'bigdecimal/util'
"0.5".to_d
# => #<BigDecimal:1dc69e0,'0.5E0',9(18)>
# File 'ext/bigdecimal/lib/bigdecimal/util.rb', line 60
def to_d BigDecimal(self) end