MCPcopy Create free account
hub / github.com/deathkiller/jazz2-native / getMemberCount

Method getMemberCount

Sources/Dependencies/jsoncpp/value.cpp:1425–1431  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1423 }
1424
1425 size_t Value::getMemberCount() const {
1426 JSON_ASSERT_MESSAGE(
1427 type() == nullValue || type() == objectValue,
1428 "in Json::Value::getMemberNames(), value must be objectValue");
1429
1430 return (type() == nullValue ? 0 : value_.map_->size());
1431 }
1432
1433 static bool IsIntegral(double d) {
1434 double integral_part;

Callers 1

RequestMetadataMethod · 0.80

Calls 2

typeClass · 0.85
sizeMethod · 0.45

Tested by

no test coverage detected