MCPcopy Create free account
hub / github.com/cinder/Cinder / decodeDouble

Method decodeDouble

src/jsoncpp/jsoncpp.cpp:752–760  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

750}
751
752bool Reader::decodeDouble(Token& token) {
753 Value decoded;
754 if (!decodeDouble(token, decoded))
755 return false;
756 currentValue().swapPayload(decoded);
757 currentValue().setOffsetStart(token.start_ - begin_);
758 currentValue().setOffsetLimit(token.end_ - begin_);
759 return true;
760}
761
762bool Reader::decodeDouble(Token& token, Value& decoded) {
763 double value = 0;

Callers

nothing calls this directly

Calls 5

stringFunction · 0.85
swapPayloadMethod · 0.80
setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80
c_strMethod · 0.45

Tested by

no test coverage detected