std::forward_list<T,Allocator>::erase_after (3) - Linux Manuals
std::forward_list<T,Allocator>::erase_after: std::forward_list<T,Allocator>::erase_after
NAME
std::forward_list<T,Allocator>::erase_after - std::forward_list<T,Allocator>::erase_after
Synopsis
iterator erase_after( const_iterator pos ); (1) (since C++11)
iterator erase_after( const_iterator first, const_iterator last ); (2) (since C++11)
Removes specified elements from the container.
1) Removes the element following pos.
2) Removes the elements in the range (first; last).
Parameters
pos - iterator to the element preceding the element to remove
first, last - range of elements to remove
Return value
1) Iterator to the element following the erased one, or end() if no such element exists.
2) last
Complexity
1) Constant.
2) Linear in distance between first and last.
Example
// Run this code
Output:
See also
clear (public member function)