I want to clear the contents of some std::list. The order of removing of elements is important for me. According to output of the following test program, the order is from first to last element. Is it guaranteed to be so? It was not clear for me from C++2003 standard.
#include <list>
#include <iostream>
struct A
{
A(int i) : I(i) {}
~A() { std::cout << I << std::endl; }
int I;
};
int main()
{
std::list<A> l;
l.push_back(A(1));
l.push_back(A(2));
l.push_back(A(3));
std::cout << "clearing list" << std::endl;
l.clear();
}

pop_front(). – KennyTM Mar 23 '12 at 14:26pop_front(). – ks1322 Mar 23 '12 at 18:29