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 boolean.
auto j = parseJSONStream(`true`); bool value = j.readBool; assert(value == true); assert(j.empty);
See Implementation
Reads a single double value.