MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / HasMember

Function HasMember

rapidjson/document.h:1107–1107  ·  view source on GitHub ↗

Check whether a member exists in the object. ! \param name Member name to be searched. \pre IsObject() == true \return Whether a member with that name exists. \note It is better to use FindMember() directly if you need the obtain the value as well. \note Linear time complexity. */

Source from the content-addressed store, hash-verified

1105 \note Linear time complexity.
1106 */
1107 bool HasMember(const Ch* name) const { return FindMember(name) != MemberEnd(); }
1108
1109#if RAPIDJSON_HAS_STDSTRING
1110 //! Check whether a member exists in the object with string object.

Callers

nothing calls this directly

Calls 2

FindMemberFunction · 0.85
MemberEndFunction · 0.85

Tested by

no test coverage detected