module YamlParser:sig..end
A parser that will parse and compose YAML content.
type t
The parser type.
exception Error of string
YamlParser.error msg is raised when a problem occurs parsing
YAML content.
val make : unit -> tYaml.make () creates a new parser.
val parse_string : t -> string -> YamlNode.tYaml.parse_string s parses s as a single YAML document and
returns the document's root node.