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

Function EraseMember

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

Remove a member from an object by iterator. ! \param pos iterator to the member to remove \pre IsObject() == true && \ref MemberBegin() <= \c pos < \ref MemberEnd() \return Iterator following the removed element. If the iterator \c pos refers to the last element, the \ref MemberEnd() iterator is returned. \note This function preserves the relative order of the r

Source from the content-addressed store, hash-verified

1433 \note Linear time complexity.
1434 */
1435 MemberIterator EraseMember(ConstMemberIterator pos) {
1436 return EraseMember(pos, pos +1);
1437 }
1438
1439 //! Remove members in the range [first, last) from an object.
1440 /*! \param first iterator to the first member to remove

Callers 1

EraseMemberMethod · 0.85

Calls 7

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

Tested by

no test coverage detected