class Integer
frozen_string_literal: false
Public Instance Methods
to_d → bigdecimal
click to toggle source
Returns the value of int
as a BigDecimal.
require 'bigdecimal' require 'bigdecimal/util' 42.to_d # => 0.42e2
See also BigDecimal.new.
# File lib/bigdecimal/util.rb, line 22 def to_d BigDecimal(self) end