るりまサーチ (Ruby 2.6.0)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.029秒)
トップページ > バージョン:2.6.0[x] > クエリ:to_d[x] > クラス:NilClass[x]

別のキーワード

  1. _builtin to_s
  2. openssl to_der
  3. openssl to_s
  4. _builtin to_a
  5. openssl to_pem

ライブラリ

検索結果

NilClass#to_d -> BigDecimal (54325.0)

BigDecimal オブジェクトの 0.0 を返します。

BigDecimal オブジェクトの 0.0 を返します。

Ruby 2.6 で追加されたメソッドです。

//emlist[][ruby]{
require "bigdecimal"
require "bigdecimal/util"

p nil.to_d # => 0.0
//}