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

Method isIntegral

external/jsoncpp/jsoncpp.cpp:2728–2734  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2726}
2727
2728bool Value::isIntegral() const {
2729#if defined(JSON_HAS_INT64)
2730 return isInt64() || isUInt64();
2731#else
2732 return isInt() || isUInt();
2733#endif
2734}
2735
2736bool Value::isDouble() const { return type_ == realValue || isIntegral(); }
2737

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected