Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TCircularBuffer
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TCircularBuffer
(
uint32 Capacity |
Creates and initializes a new instance of the TCircularBuffer class. | Containers/CircularBuffer.h | |
TCircularBuffer
(
uint32 Capacity, |
Creates and initializes a new instance of the TCircularBuffer class. | Containers/CircularBuffer.h |
TCircularBuffer(uint32)
Description
Creates and initializes a new instance of the TCircularBuffer class.
| Name | TCircularBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/CircularBuffer.h |
| Include Path | #include "Containers/CircularBuffer.h" |
TCircularBuffer
(
uint32 Capacity
)
Parameters
| Name | Remarks |
|---|---|
| Capacity | The number of elements that the buffer can store (will be rounded up to the next power of 2). |
TCircularBuffer(uint32, const ElementType &)
Description
Creates and initializes a new instance of the TCircularBuffer class.
| Name | TCircularBuffer |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/CircularBuffer.h |
| Include Path | #include "Containers/CircularBuffer.h" |
TCircularBuffer
(
uint32 Capacity,
const ElementType & InitialValue
)
Parameters
| Name | Remarks |
|---|---|
| Capacity | The number of elements that the buffer can store (will be rounded up to the next power of 2). |
| InitialValue | The initial value for the buffer's elements. |