24件ヒット
[1-24件を表示]
(0.027秒)
クラス
-
Psych
:: Nodes :: Node (12) -
Psych
:: Nodes :: Scalar (12)
検索結果
-
Psych
:: Nodes :: Scalar # value -> String (18211.0) -
scalar の値を返します。
...scalar の値を返します。
@see Psych::Nodes::Scalar#value=,
Psych::Nodes::Scalar.new... -
Psych
:: Nodes :: Node # tag -> String | nil (116.0) -
ノードに付加されたタグを返します。
...されていない場合は nil を返します。
ast = Psych.parse(<<EOS)
---
- !!str a
- b
EOS
p ast.root.children[0].value # => "a"
p ast.root.children[0].tag # => "tag:yaml.org,2002:str"
p ast.root.children[1].value # => "b"
p ast.root.children[1].tag # => nil...