るりまサーチ

最速Rubyリファレンスマニュアル検索!
22件ヒット [1-22件を表示] (0.118秒)
トップページ > クエリ:I[x] > クラス:Psych::Nodes::Node[x] > クエリ:children[x]

別のキーワード

  1. _builtin to_i
  2. fiddle to_i
  3. matrix elements_to_i
  4. csv to_i
  5. _builtin i

ライブラリ

検索結果

Psych::Nodes::Node#children -> [Psych::Nodes::Node] (24202.0)

子ノードの集合を配列で返します。

子ノードの集合を配列で返します。

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