String to load YAML from. The char[] version will overwrite its input during parsing as D:YAML reuses memory.
The filename to give to the Loader, defaults to "<unknown>"
Loader loading YAML from given string.
YAMLException if data could not be read (e.g. a decoding error)
Load a char[].
assert(Loader.fromString("42".dup).load().as!int == 42);
Load a string.
assert(Loader.fromString("42").load().as!int == 42);
Construct a Loader to load YAML from a string.