MCPcopy Create free account
hub / github.com/Illumina/paragraph / decodeDouble

Method decodeDouble

external/jsoncpp/jsoncpp.cpp:822–830  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

820}
821
822bool Reader::decodeDouble(Token& token) {
823 Value decoded;
824 if (!decodeDouble(token, decoded))
825 return false;
826 currentValue().swapPayload(decoded);
827 currentValue().setOffsetStart(token.start_ - begin_);
828 currentValue().setOffsetLimit(token.end_ - begin_);
829 return true;
830}
831
832bool Reader::decodeDouble(Token& token, Value& decoded) {
833 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