MCPcopy Create free account
hub / github.com/WolfireGames/overgrowth / isMember

Method isMember

Source/JSON/jsoncpp.cpp:3275–3278  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3273#endif
3274
3275bool Value::isMember(char const* key, char const* cend) const {
3276 Value const* value = find(key, cend);
3277 return NULL != value;
3278}
3279bool Value::isMember(char const* key) const {
3280 return isMember(key, key + strlen(key));
3281}

Callers 2

JSONValueIsMemberFunction · 0.45
readObjectMethod · 0.45

Calls 4

findFunction · 0.85
dataMethod · 0.45
lengthMethod · 0.45
c_strMethod · 0.45

Tested by

no test coverage detected