Queue<T> constructor
Creates an empty queue using a Deque as the default underlying container.
Implementation
Queue() : _container = Deque<T>();
Creates an empty queue using a Deque as the default underlying container.
Queue() : _container = Deque<T>();