MCPcopy Create free account
hub / github.com/altairwei/WizNotePlus / decodeDouble

Method decodeDouble

src/share/jsoncpp/jsoncpp.cpp:826–834  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

824}
825
826bool Reader::decodeDouble(Token& token) {
827 Value decoded;
828 if (!decodeDouble(token, decoded))
829 return false;
830 currentValue().swapPayload(decoded);
831 currentValue().setOffsetStart(token.start_ - begin_);
832 currentValue().setOffsetLimit(token.end_ - begin_);
833 return true;
834}
835
836bool Reader::decodeDouble(Token& token, Value& decoded) {
837 double value = 0;

Callers

nothing calls this directly

Calls 4

fixNumericLocaleInputFunction · 0.85
swapPayloadMethod · 0.80
setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80

Tested by

no test coverage detected