Construct a Loader to load YAML from a string (char []).
Loader loading YAML from given string.
YAMLException if data could not be read (e.g. a decoding error)
assert(Loader.fromString(cast(char[])"42").load().as!int == 42);
See Implementation
Construct a Loader to load YAML from a string (char []).