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

Function RemoveMember

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

Remove a member in object by its name. ! \param name Name of member to be removed. \return Whether the member existed. \note This function may reorder the object members. Use \ref EraseMember(ConstMemberIterator) if you need to preserve the relative order of the remaining members. \note Linear time complexity. */

Source from the content-addressed store, hash-verified

1381 \note Linear time complexity.
1382 */
1383 bool RemoveMember(const Ch* name) {
1384 GenericValue n(StringRef(name));
1385 return RemoveMember(n);
1386 }
1387
1388#if RAPIDJSON_HAS_STDSTRING
1389 bool RemoveMember(const std::basic_string<Ch>& name) { return RemoveMember(GenericValue(StringRef(name))); }

Callers

nothing calls this directly

Calls 7

FindMemberFunction · 0.85
MemberEndFunction · 0.85
IsObjectFunction · 0.85
GetMembersPointerFunction · 0.85
MemberBeginFunction · 0.85
StringRefFunction · 0.70
GenericValueFunction · 0.70

Tested by

no test coverage detected