Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TArrayG
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Assignment operator. | uLang/Common/Containers/Array.h | ||
| Move assignment operator. | uLang/Common/Containers/Array.h |
operator=(const TArrayG &)
Description
Assignment operator. First deletes all currently contained elements and then copies from other 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=
(
const TArrayG & Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The source array to assign from. |
operator=(TArrayG &&)
Description
Move assignment operator.
| 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 | Array to assign and move from. |