cppreference.com > C++ Double-ended Queues > pop_front
pop_front
Syntax:
  #include <deque>
  void pop_front();

The function pop_front() removes the first element of the dequeue.

The pop_front() function runs in constant time.