(C++17) | ||||
| Sequence | ||||
(C++11) | ||||
(C++26) | ||||
(C++26) | ||||
(C++11) | ||||
| Associative | ||||
| Unordered associative | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
(C++11) | ||||
| Adaptors | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
(C++23) | ||||
| Views | ||||
(C++20) | ||||
(C++23) | ||||
| Tables | ||||
| Iterator invalidation | ||||
| Member function table | ||||
| Non-member function table |
| Member functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Non-member functions | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| Deduction guides(C++17) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
iterator erase_after( const_iterator pos); | (1) | (since C++11) (constexpr since C++26) |
iterator erase_after( const_iterator first, const_iterator last); | (2) | (since C++11) (constexpr since C++26) |
Removes specified elements from the container.
(first, last).(first, last) is not dereferceable, the behavior is undefined.Contents |
| pos | - | iterator to the element preceding the element to remove |
| first, last | - | the pair of iterators defining therange of elements to remove |
Throws nothing.
#include <forward_list>#include <iostream>#include <iterator> int main(){std::forward_list<int> l={1,2,3,4,5,6,7,8,9}; // l.erase(l.begin()); // Error: no function erase() l.erase_after(l.before_begin());// Removes first element for(auto n: l)std::cout<< n<<' ';std::cout<<'\n'; auto fi=std::next(l.begin());auto la=std::next(fi,3); l.erase_after(fi, la); for(auto n: l)std::cout<< n<<' ';std::cout<<'\n';}
Output:
2 3 4 5 6 7 8 92 3 6 7 8 9
| clears the contents (public member function)[edit] |