るりまサーチ (Ruby 3.3)

最速Rubyリファレンスマニュアル検索!
1件ヒット [1-1件を表示] (0.027秒)

別のキーワード

  1. format spec
  2. format spec=
  3. oldformat spec
  4. oldformat spec=
  5. installer spec

ライブラリ

検索結果

BigDecimal#inspect -> String (18307.0)

BigDecimal オブジェクトを表す文字列を返します。

...
BigDecimal
オブジェクトを表す文字列を返します。

//emlist[][ruby]{
require "bigdecimal"
BigDecimal
("1234.5678").inspect
# => "0.12345678e4"
//}...