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

Method readNumber

external/jsoncpp/jsoncpp.cpp:567–574  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

565}
566
567void Reader::readNumber() {
568 while (current_ != end_) {
569 if (!(*current_ >= '0' && *current_ <= '9') &&
570 !in(*current_, '.', 'e', 'E', '+', '-'))
571 break;
572 ++current_;
573 }
574}
575
576bool Reader::readString() {
577 Char c = 0;

Callers

nothing calls this directly

Calls 1

inFunction · 0.85

Tested by

no test coverage detected