Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TRingBuffer
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType & AddFront_GetRef
(
ElementType&& Element |
Add a new element before the front pointer of the RingBuffer, resizing if necessary. | Containers/RingBuffer.h | |
ElementType & AddFront_GetRef
(
const ElementType& Element |
Add a new element before the front pointer of the RingBuffer, resizing if necessary. | Containers/RingBuffer.h |
AddFront_GetRef(ElementType &&)
Description
Add a new element before the front pointer of the RingBuffer, resizing if necessary. The new element is move constructed from the argument. Returns a reference to the added element.
| Name | AddFront_GetRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/RingBuffer.h |
| Include Path | #include "Containers/RingBuffer.h" |
ElementType & AddFront_GetRef
(
ElementType && Element
)
AddFront_GetRef(const ElementType &)
Description
Add a new element before the front pointer of the RingBuffer, resizing if necessary. The new element is copy constructed from the argument. Returns a reference to the added element.
| Name | AddFront_GetRef |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/RingBuffer.h |
| Include Path | #include "Containers/RingBuffer.h" |
ElementType & AddFront_GetRef
(
const ElementType & Element
)