void pop_back(); |
Removes the last element of the container.
Calling pop_back on an empty container is undefined.
No iterators or references except for back() and end() are invalidated.
Parameters
(none).
Return value
(none).
Complexity
Constant.
Exceptions
(none).
See also
| adds an element to the end (public member function) |
Please login to continue.