Reads a single double value.
An input range of JSON parser nodes
Throws a JSONException is the node range is empty or nodes.front is not a string.
auto j = parseJSONStream(`"foo"`); string value = j.readString; assert(value == "foo"); assert(j.empty);
See Implementation
Reads a single double value.