Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/TCircularQueue > API/Runtime/Core/Containers/TCircularQueue/Dequeue
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/CircularQueue.h |
| Include | #include "Containers/CircularQueue.h" |
bool Dequeue
(
FElementType & OutElement
)
Remarks
Removes an item from the front of the queue.
To be called only from consumer thread. true if an element has been returned, false if the queue was empty.
Parameters
| Name | Description |
|---|---|
| OutElement | Will contain the element if the queue is not empty. |