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