るりまサーチ

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

関連するキーワード

  1. syck/rubytypes
  2. yaml/rubytypes
  3. syck/rubytypes
  4. yaml/rubytypes
  5. object

ライブラリ

検索結果

Float#to_yaml(opts = {}) (18132)

自身を YAML ドキュメントに変換します。

...ションの詳細は YAML::Syck::Emitter#reset を参照し
てください。

print 1.0.to_yaml # => --- 1.0
print -1.0.to_yaml # => --- -1.0
print (1.0/0.0).to_yaml # => --- .Inf
print (-1.0/0.0).to_yaml # => --- -.Inf
print (0.0/0.0).to_yaml # => --- .NaN...
...オプションの詳細は Syck::Emitter#reset を参照し
てください。

print 1.0.to_yaml # => --- 1.0
print -1.0.to_yaml # => --- -1.0
print (1.0/0.0).to_yaml # => --- .Inf
print (-1.0/0.0).to_yaml # => --- -.Inf
print (0.0/0.0).to_yaml # => --- .NaN...