MCPcopy Create free account
hub / github.com/Kitware/VTK / decodeDouble

Method decodeDouble

ThirdParty/jsoncpp/vtkjsoncpp/jsoncpp.cpp:816–824  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

814}
815
816bool Reader::decodeDouble(Token& token) {
817 Value decoded;
818 if (!decodeDouble(token, decoded))
819 return false;
820 currentValue().swapPayload(decoded);
821 currentValue().setOffsetStart(token.start_ - begin_);
822 currentValue().setOffsetLimit(token.end_ - begin_);
823 return true;
824}
825
826bool Reader::decodeDouble(Token& token, Value& decoded) {
827 double value = 0;

Callers

nothing calls this directly

Calls 6

StringFunction · 0.85
isinfFunction · 0.85
swapPayloadMethod · 0.80
setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80
maxFunction · 0.50

Tested by

no test coverage detected