ライブラリ
-
syck
/ rubytypes (2) -
yaml
/ rubytypes (1)
検索結果
-
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...
