Method: Integer#to_d
- Defined in:
- lib/bigdecimal/util.rb
#to_d ⇒ Object
call-seq:
int.to_d -> bigdecimal
Returns the value of int as a BigDecimal.
require 'bigdecimal'
require 'bigdecimal/util'
42.to_d # => 0.42e2
See also Kernel.BigDecimal.
23 24 25 |
# File 'lib/bigdecimal/util.rb', line 23 def to_d BigDecimal(self) end |