Lines Matching defs:erase
93 // Positional insert and erase:
100 // iterator erase(const_iterator pos);
101 // iterator erase(const_iterator first, const_iterator last);
103 // End insert and erase:
671 // Insert and erase.
773 // Calling erase() won't automatically resize the buffer smaller like resize
777 // worth having the extra code for every template instantiation of erase()
779 iterator erase(const_iterator pos) { return erase(pos, pos + 1); }
780 iterator erase(const_iterator first, const_iterator last) {
808 // In an erase operation, the shifted items all move logically to the left,
821 // Since we did not reallocate and only changed things after the erase
1098 container.erase(std::remove(container.begin(), container.end(), value),
1104 container.erase(std::remove_if(container.begin(), container.end(), pred),