Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TArray & operator+=
(
TArray&& Other |
Appends the specified array to this array. Cannot append to self.Move semantics version. | Containers/Array.h | |
TArray & operator+=
(
const TArray& Other |
Appends the specified array to this array. Cannot append to self. | Containers/Array.h | |
TArray & operator+=
(
std::initializer_list< ElementType > InitList |
Appends the specified initializer list to this array. | Containers/Array.h |
operator+=(TArray &&)
Description
Appends the specified array to this array. Cannot append to self.
Move semantics version.
| Name | operator+= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include Path | #include "Containers/Array.h" |
TArray & operator+=
(
TArray && Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The array to append. |
operator+=(const TArray &)
Description
Appends the specified array to this array. Cannot append to self.
| Name | operator+= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include Path | #include "Containers/Array.h" |
TArray & operator+=
(
const TArray & Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The array to append. |
operator+=(std::initializer_list< ElementType >)
Description
Appends the specified initializer list to this array.
| Name | operator+= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include Path | #include "Containers/Array.h" |
TArray & operator+=
(
std::initializer_list< ElementType > InitList
)
Parameters
| Name | Remarks |
|---|---|
| InitList | The initializer list to append. |