TCircularQueue::Peek

Returns the oldest item in the queue without removing it.

Windows
MacOS
Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/CircularQueue.h

Include

#include "Containers/CircularQueue.h"

Syntax

const ElementType * Peek() const

Remarks

Returns the oldest item in the queue without removing it.

Returns

an ElementType pointer if an item has been returned, nullptr if the queue was empty. @note To be called only from consumer thread. @note The return value is only valid until Dequeue, Empty, or the destructor has been called.

Help shape the future of Unreal Engine documentation! Tell us how we're doing so we can serve you better.
Take our survey
Dismiss