MCPcopy Create free account
hub / github.com/SOUI2/soui / IsIntegral

Function IsIntegral

third-part/jsoncpp/src/lib_json/json_value.cpp:1297–1300  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1295//# endif
1296
1297static bool IsIntegral(double d) {
1298 double integral_part;
1299 return modf(d, &integral_part) == 0.0;
1300}
1301
1302bool Value::isNull() const { return type_ == nullValue; }
1303

Callers 5

isIntMethod · 0.85
isUIntMethod · 0.85
isInt64Method · 0.85
isUInt64Method · 0.85
isIntegralMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected