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
| 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 |
nothing calls this directly
no test coverage detected