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 number.
auto j = parseJSONStream(`1.0`); double value = j.readDouble; assert(value == 1.0); assert(j.empty);
See Implementation
Reads a single double value.