DoubleLinkedQueue()

Source

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