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

Method decodeNumber

external/jsoncpp/jsoncpp.cpp:680–688  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

678}
679
680bool Reader::decodeNumber(Token &token) {
681 Value decoded;
682 if (!decodeNumber(token, decoded))
683 return false;
684 currentValue() = decoded;
685 currentValue().setOffsetStart(token.start_ - begin_);
686 currentValue().setOffsetLimit(token.end_ - begin_);
687 return true;
688}
689
690bool Reader::decodeNumber(Token &token, Value &decoded) {
691 bool isDouble = false;

Callers

nothing calls this directly

Calls 3

inFunction · 0.85
setOffsetStartMethod · 0.80
setOffsetLimitMethod · 0.80

Tested by

no test coverage detected