MCPcopy Create free account
hub / github.com/Illumina/hap.py / decodeDouble

Method decodeDouble

external/jsoncpp/jsoncpp.cpp:738–746  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

736}
737
738bool Reader::decodeDouble(Token &token) {
739 Value decoded;
740 if (!decodeDouble(token, decoded))
741 return false;
742 currentValue() = decoded;
743 currentValue().setOffsetStart(token.start_ - begin_);
744 currentValue().setOffsetLimit(token.end_ - begin_);
745 return true;
746}
747
748bool Reader::decodeDouble(Token &token, Value &decoded) {
749 double value = 0;

Callers

nothing calls this directly

Calls 3

setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80
c_strMethod · 0.80

Tested by

no test coverage detected