Defined in File util.hpp
T>util::drain_deque(std::deque<T> &queue, size_t n)¶Helper function to pop multiple bytes from deque
Assumes there are enough values in the queue to pop, so length checks must be done ahead of time
vector of values from queue
T: is type of items in queue, the first n of which will be returned
queue: queue of items to pop items from
n: number of items to pop from queue