MCPcopy Create free account
hub / github.com/ComodoSecurity/openedr / isMember

Method isMember

edrav2/eprj/jsoncpp/src/lib_json/json_value.cpp:1291–1294  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1289#endif
1290
1291bool Value::isMember(char const* begin, char const* end) const {
1292 Value const* value = find(begin, end);
1293 return nullptr != value;
1294}
1295bool Value::isMember(char const* key) const {
1296 return isMember(key, key + strlen(key));
1297}

Callers 15

readObjectMethod · 0.80
JSONTEST_FIXTUREFunction · 0.80
test_server.cppFile · 0.80
test_client.cppFile · 0.80
test_common.cppFile · 0.80
throwErrorExceptionMethod · 0.80
ValidateResponseMethod · 0.80
HasErrorMethod · 0.80
CallProceduresMethod · 0.80
ValidateRequestFieldsMethod · 0.80
WrapErrorMethod · 0.80

Calls 5

strlenFunction · 0.85
findFunction · 0.50
dataMethod · 0.45
lengthMethod · 0.45
c_strMethod · 0.45

Tested by 1

GetProcedureMethod · 0.64