るりまサーチ

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

別のキーワード

  1. psych new
  2. psych any
  3. psych dump
  4. psych tag
  5. psych anchor

ライブラリ

検索結果

Psych::TreeBuilder#root -> Psych::Nodes::Stream (29225.0)

AST の root を返します。

...AST の root を返します。

@see Psych::Nodes::Stream...

Psych::Nodes::Document#root -> Psych::Nodes::Node (29203.0)

ルートノードを返します。

ルートノードを返します。

Psych::Nodes::Node#tag -> String | nil (11031.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...