4#include "../Foundation/Assert.h"
9struct IntrusiveDoubleLinkedList;
28 [[nodiscard]] T* peekFront()
const {
return front; }
30 [[nodiscard]]
bool isEmpty()
const {
return peekFront() ==
nullptr; }
34 for (T* current = front; current !=
nullptr;)
36 T* next =
static_cast<T*
>(current->next);
37 current->next =
nullptr;
38 current->prev =
nullptr;
52 queueBackUnchecked(*other.front, *other.back);
57 void queueBack(T& item)
60 queueBackUnchecked(item, item);
64 void queueBackUnchecked(T& item, T& newBack)
82 [[nodiscard]] T* dequeueFront()
89 front =
static_cast<T*
>(item->next);
92 front->prev =
nullptr;
105#if SC_CONFIGURATION_DEBUG
115 it =
static_cast<T*
>(it->next);
121 front =
static_cast<T*
>(front->next);
125 back =
static_cast<T*
>(back->prev);
128 T* next =
static_cast<T*
>(item.next);
129 T* prev =
static_cast<T*
>(item.prev);
#define SC_ASSERT_DEBUG(e)
Assert expression e to be true.
Definition: Assert.h:82
An Intrusive Double Linked List.
Definition: IntrusiveDoubleLinkedList.h:24