るりまサーチ

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

別のキーワード

  1. string b
  2. _builtin b
  3. b string
  4. b
  5. b _builtin

モジュール

キーワード

検索結果

<< < ... 10 11 12 >>

Psych::Nodes::Node#tag -> String | nil (19.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...
<< < ... 10 11 12 >>