Remove an element of array by iterator. ! \param pos iterator to the element to remove \pre IsArray() == true && \ref Begin() <= \c pos < \ref End() \return Iterator following the removed element. If the iterator pos refers to the last element, the End() iterator is returned. \note Linear time complexity. */
| 1650 | \note Linear time complexity. |
| 1651 | */ |
| 1652 | ValueIterator Erase(ConstValueIterator pos) { |
| 1653 | return Erase(pos, pos + 1); |
| 1654 | } |
| 1655 | |
| 1656 | //! Remove elements in the range [first, last) of the array. |
| 1657 | /*! |
nothing calls this directly
no test coverage detected