removes the last item of a collection without returning it
std::pop | remove and return the last item of a collection |
std::peek | returns the last item of a collection without removing it |
std::push | add a single item at the end of a collection |
std::put | adds a single item at the front of a collection |
std_types::list | removes the last item of a non-empty list |