GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
std::forward_list::erase_after(3) C++ Standard Libary std::forward_list::erase_after(3)

std::forward_list::erase_after - std::forward_list::erase_after


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 following first until last.


pos - iterator to the element preceding the element to remove
first, last - range of elements to remove


1) Iterator to the element following the erased one, or end() if no such element
exists.
2) last


1) Constant.
2) Linear in distance between first and last.

// Run this code


#include <forward_list>
#include <iterator>
#include <iostream>
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';
}


2 3 4 5 6 7 8 9
2 3 6 7 8 9


clear clears the contents
(C++11) (public member function)

2022.07.31 http://cppreference.com

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.