るりまサーチ (Ruby 2.6.0)

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

別のキーワード

  1. etc sc_xopen_enh_i18n
  2. openssl n
  3. rsa n=
  4. rsa n
  5. pop3 n_mails

ライブラリ

クラス

検索結果

BigDecimal#inspect -> String (81622.0)

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

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

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