Class: Integer

Inherits:
Numeric show all
Defined in:
opal/stdlib/bigdecimal/util.rb

Instance Method Summary collapse

Methods inherited from Numeric

#to_json, #to_n

Instance Method Details

#to_dObject

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 BigDecimal::new.



23
24
25
# File 'opal/stdlib/bigdecimal/util.rb', line 23

def to_d
  BigDecimal(self)
end