Why there is no pop_front method in C++ std::vector?
pop_front
std::vector
Probably because it would be monumentally slow for large vectors.
pop_front() on a vector containing 1000 objects would require 999 operator=() calls.
pop_front()
operator=()