module YAML::Nodes
Overview
The YAML::Nodes module provides an implementation of an
in-memory YAML document tree. This tree can be generated
with the YAML::Nodes.parse method or created with a
YAML::Nodes::Builder.
This document tree can then be converted to YAML be
invoking to_yaml on the document object.
Defined in:
yaml/nodes.cryaml/nodes/nodes.cr
Class Method Summary
-
.parse(string_or_io : String | IO) : Document
Parses a
StringorIOinto aYAML::Document.
Class Method Detail
Parses a String or IO into a YAML::Document.