12件ヒット
[1-12件を表示]
(0.111秒)
ライブラリ
- psych (12)
検索結果
-
Psych
:: Handler # scalar(value , anchor , tag , plain , quoted , style) -> () (14.0) -
スカラー値を見付けたときに呼び出されます。
...キュメントには多くのパターンのスカラーが含まれています。
---
- !str "foo"
- &anchor fun
- many
lines
- |
many
newlines
この YAML ドキュメントには4つの文字列が含まれています。
scalar メソッドは 順に以下の引数で......nchor tag plain quoted style
["foo", nil, "!str", false, false, 3 ]
["fun", "anchor", nil, true, false, 1 ]
["many lines", nil, nil, true, false, 1 ]
["many\nnewlines\n", nil, nil, false, true, 4 ]...