[string.erase] (original) (raw)
27 Strings library [strings]
27.4 String classes [string.classes]
27.4.3 Class template basic_string [basic.string]
27.4.3.7 Modifiers [string.modifiers]
27.4.3.7.5 basic_string::erase [string.erase]
constexpr basic_string& erase(size_type pos = 0, size_type n = npos);
Effects: Determines the effective length xlenof the string to be removed as the smaller of n andsize() - pos.
Removes the characters in the range [begin() + pos, begin() + pos + xlen).
Throws: out_of_rangeif pos > size().
constexpr iterator erase(const_iterator p);
Preconditions: p is a valid dereferenceable iterator on *this.
Effects: Removes the character referred to by p.
Returns: An iterator which points to the element immediately following p prior to the element being erased.
If no such element exists,end()is returned.
constexpr iterator erase(const_iterator first, const_iterator last);
Preconditions: first and last are valid iterators on*this.
[first, last) is a valid range.
Effects: Removes the characters in the range [first, last).
Returns: An iterator which points to the element pointed to by last prior to the other elements being erased.
If no such element exists,end()is returned.
constexpr void pop_back();
Hardened preconditions: empty() is false.
Effects: Equivalent to erase(end() - 1).