Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TChunkedArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 AddElement
(
ElementType&& Item |
Adds a new item to the end of the chunked array. | Containers/ChunkedArray.h | |
int32 AddElement
(
const ElementType& Item |
Adds a new item to the end of the chunked array. | Containers/ChunkedArray.h |
AddElement(ElementType &&)
Description
Adds a new item to the end of the chunked array.
| Name | AddElement |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ChunkedArray.h |
| Include Path | #include "Containers/ChunkedArray.h" |
int32 AddElement
(
ElementType && Item
)
Index to the new item
Parameters
| Name | Remarks |
|---|---|
| Item | The item to add |
AddElement(const ElementType &)
Description
Adds a new item to the end of the chunked array.
| Name | AddElement |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/ChunkedArray.h |
| Include Path | #include "Containers/ChunkedArray.h" |
int32 AddElement
(
const ElementType & Item
)
Index to the new item
Parameters
| Name | Remarks |
|---|---|
| Item | The item to add |