Object
Convert string to a BigDecimal and return it.
string
require 'bigdecimal' require 'bigdecimal/util' "0.5".to_d # => #<BigDecimal:1dc69e0,'0.5E0',9(18)>
# File bigdecimal/util.rb, line 47 def to_d BigDecimal(self) end