本文简要介绍ruby语言中 Psych::Nodes::Document.new
的用法。
用法
new(version = [], tag_directives = [], implicit = false)
创建一个新的 Psych::Nodes::Document
对象。
version
是表示 YAML
版本的列表。 tags_directives
是标签指令声明列表 implicit
是指示文档是否将被隐式启动的标志。
例子:
这将创建一个 YAML
文档对象,该对象表示具有一个标签指令的 YAML
1.1 文档,并具有隐式开始:
Psych::Nodes::Document.new(
[1,1],
[["!", "tag:tenderlovemaking.com,2009:"]],
true
)
也可以看看
另见 Psych::Handler#start_document
调用超类方法
Psych::Nodes::Node::new
相关用法
- Ruby DomainError类用法及代码示例
- Ruby Date.valid_civil?用法及代码示例
- Ruby DateTime jisx0301()用法及代码示例
- Ruby Date cwday()用法及代码示例
- Ruby Date ctime()用法及代码示例
- Ruby Date.gregorian?用法及代码示例
- Ruby DRb.regist_server用法及代码示例
- Ruby DH.public_key用法及代码示例
- Ruby Date asctime()用法及代码示例
- Ruby DateTime类用法及代码示例
- Ruby DateTime.hour用法及代码示例
- Ruby DateTime.jd用法及代码示例
- Ruby DateTime.zone用法及代码示例
- Ruby DateTime ordinal()用法及代码示例
- Ruby DateTime.second用法及代码示例
- Ruby Date.strftime用法及代码示例
- Ruby Digest.update用法及代码示例
- Ruby DSA.export用法及代码示例
- Ruby DSA.to_pem用法及代码示例
- Ruby DNS.new用法及代码示例
- Ruby Date.valid_ordinal?用法及代码示例
- Ruby DateTime to_datetime()用法及代码示例
- Ruby DateTime civil()用法及代码示例
- Ruby Date.leap?用法及代码示例
- Ruby DateTime.second_fraction用法及代码示例
注:本文由纯净天空筛选整理自ruby-lang.org大神的英文原创作品 Document.new。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。