Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TSPtrArrayG
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSPtrArrayG & operator+=
(
TSPtrArrayG&& Other |
Appends the specified array to this array. Cannot append to self.Move semantics version. | uLang/Common/Containers/SharedPointerArray.h | |
TSPtrArrayG & operator+=
(
const TSPtrArrayG& Other |
Appends the specified array to this array. Cannot append to self. | uLang/Common/Containers/SharedPointerArray.h |
operator+=(TSPtrArrayG &&)
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/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
TSPtrArrayG & operator+=
(
TSPtrArrayG && Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The array to append. |
operator+=(const TSPtrArrayG &)
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/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
TSPtrArrayG & operator+=
(
const TSPtrArrayG & Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The array to append. |