returns the last item of a collection without removing it
std::pop | remove and return the last item of a collection |
std::drop | removes the last item of a collection without returning 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 | returns the last item of a non-empty list |