DoubleLinkedQueue<E> constructor

DoubleLinkedQueue<E>()

Implementation

DoubleLinkedQueue() {
  _sentinel = _DoubleLinkedQueueSentinel<E>(this);
}