deque::pop_back

deque::pop_back

void pop_back();

The member function removes the last element of the controlled sequence, which must be non-empty. Removing the element invalidates only iterators and references that designate the erased element.

See the related sample program.