MCPcopy Create free account
hub / github.com/cinience/RedisStudio / EraseMember

Function EraseMember

include/rapidjson/document.h:1099–1101  ·  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 t

Source from the content-addressed store, hash-verified

1097 \note Linear time complexity.
1098 */
1099 MemberIterator EraseMember(ConstMemberIterator pos) {
1100 return EraseMember(pos, pos +1);
1101 }
1102
1103 //! Remove members in the range [first, last) from an object.
1104 /*! \param first iterator to the first member to remove

Callers

nothing calls this directly

Calls 3

IsObjectFunction · 0.85
MemberBeginFunction · 0.85
MemberEndFunction · 0.85

Tested by

no test coverage detected