MCPcopy Create free account
hub / github.com/PlayFab/gsdk / decodeDouble

Method decodeDouble

cpp/cppsdk/jsoncpp.cpp:844–852  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

842}
843
844bool Reader::decodeDouble(Token& token) {
845 Value decoded;
846 if (!decodeDouble(token, decoded))
847 return false;
848 currentValue().swapPayload(decoded);
849 currentValue().setOffsetStart(token.start_ - begin_);
850 currentValue().setOffsetLimit(token.end_ - begin_);
851 return true;
852}
853
854bool Reader::decodeDouble(Token& token, Value& decoded) {
855 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