void push_front(const T& x);
The member function inserts an element with value x
at the beginning of the controlled sequence. Inserting the element
invalidates all iterators, but no references, to existing elements.
See the related sample program.