Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/TSPtrArrayG
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSPtrArrayG & operator=
(
const TSPtrArrayG< OtherElementType, OtherAllowNull, InElementAllocatorType, RawAllocatorArgsType...... |
Implicitly casting copying assignment-ish operator. | uLang/Common/Containers/SharedPointerArray.h | |
TSPtrArrayG & operator=
(
const TSPtrArrayG& Other |
Copying assignment operator. | uLang/Common/Containers/SharedPointerArray.h | |
TSPtrArrayG & operator=
(
TSPtrArrayG< OtherElementType, OtherAllowNull, InElementAllocatorType, RawAllocatorArgsType... >&& ... |
Implicitly casting move assignment operator. | uLang/Common/Containers/SharedPointerArray.h | |
TSPtrArrayG & operator=
(
TSPtrArrayG&& Other |
Move assignment operator. | uLang/Common/Containers/SharedPointerArray.h |
operator=(const TSPtrArrayG< OtherElementType, OtherAllowNull, InElementAllocatorType, RawAllocatorArgsType... > &)
Description
Implicitly casting copying assignment-ish 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/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
template<typename OtherElementType, bool OtherAllowNull, typename>
TSPtrArrayG & operator=
(
const TSPtrArrayG < OtherElementType, OtherAllowNull, InElementAllocatorType, RawAllocatorArgsType... > & Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The source array to assign from. |
operator=(const TSPtrArrayG &)
Description
Copying 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/SharedPointerArray.h |
| Include Path | #include "uLang/Common/Containers/SharedPointerArray.h" |
TSPtrArrayG & operator=
(
const TSPtrArrayG & Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The source array to assign from. |
operator=(TSPtrArrayG< OtherElementType, OtherAllowNull, InElementAllocatorType, RawAllocatorArgsType... > &&)
Description
Implicitly casting move assignment operator.
| 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" |
template<class OtherElementType, bool OtherAllowNull, typename>
TSPtrArrayG & operator=
(
TSPtrArrayG < OtherElementType, OtherAllowNull, InElementAllocatorType, RawAllocatorArgsType... > && Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | Array to assign and move from. |
operator=(TSPtrArrayG &&)
Description
Move assignment operator.
| 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 | Array to assign and move from. |