Construct a Loader to load YAML from a string.
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);
See Implementation
Construct a Loader to load YAML from a string.