#includestd::list
mylist = {10, 20, 30};
mylist.push_front(5);This will add the value `5` to the beginning of the `mylist`. The C++ Standard Library provides the `std::list` class, so this would be the package library used when working with C++ list containers.