Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
SizeType Add
(
ElementType&& Item |
Adds a new item to the end of the array, possibly reallocating the whole array to fit. | Containers/Array.h | |
SizeType Add
(
const ElementType& Item |
Adds a new item to the end of the array, possibly reallocating the whole array to fit. | Containers/Array.h |
Add(ElementType &&)
Description
Adds a new item to the end of the array, possibly reallocating the whole array to fit.
Move semantics version.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include Path | #include "Containers/Array.h" |
SizeType Add
(
ElementType && Item
)
Index to the new item
Parameters
| Name | Remarks |
|---|---|
| Item | The item to add |
See Also
-
AddDefaulted
-
AddUnique
-
AddZeroed
-
Append
-
Insert
Add(const ElementType &)
Description
Adds a new item to the end of the array, possibly reallocating the whole array to fit.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include Path | #include "Containers/Array.h" |
SizeType Add
(
const ElementType & Item
)
Index to the new item
Parameters
| Name | Remarks |
|---|---|
| Item | The item to add |
See Also
-
AddDefaulted
-
AddUnique
-
AddZeroed
-
Append
-
Insert