Defined in File util.hpp
T>util::pop_front(std::deque<T> &queue)¶Helper function to pop front item from deque and return it
Assumes there is a value in the queue to actually pop, so length checks must be done ahead of time
first item in queue
T: is type of items in queue, the first of which will be returned
queue: queue of items to pop front item from