Navigation
API > API/Plugins > API/Plugins/Learning > API/Plugins/Learning/TMultiArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TMultiArray & operator=
(
const TMultiArray< DimNum, ElementType, OtherAllocatorType >& Other |
Assignment operator. | MultiArray.h | |
TMultiArray & operator=
(
const TMultiArray& Other |
Assignment operator. | MultiArray.h | |
TMultiArray & operator=
(
const TMultiArrayView< DimNum, OtherElementType >& Other |
MultiArray.h | ||
TMultiArray & operator=
(
TMultiArray&& Other |
Move assignment operator. | MultiArray.h |
operator=(const TMultiArray< DimNum, ElementType, OtherAllocatorType > &)
Description
Assignment operator. First deletes all currently contained elements and then copies from other array.
AllocatorType changing version.
| Name | operator= |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
template<typename OtherAllocatorType>
TMultiArray & operator=
(
const TMultiArray < DimNum, ElementType, OtherAllocatorType > & Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The source array to assign from. |
operator=(const TMultiArray &)
Description
Assignment operator. First deletes all currently contained elements and then copies from other array.
| Name | operator= |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
TMultiArray & operator=
(
const TMultiArray & Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The source array to assign from. |
operator=(const TMultiArrayView< DimNum, OtherElementType > &)
| Name | operator= |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
template<typename OtherElementType>
TMultiArray & operator=
(
const TMultiArrayView < DimNum, OtherElementType > & Other
)
operator=(TMultiArray &&)
Description
Move assignment operator.
| Name | operator= |
| Type | function |
| Header File | /Engine/Plugins/Experimental/LearningAgents/Source/Learning/Public/MultiArray.h |
| Include Path | #include "MultiArray.h" |
TMultiArray & operator=
(
TMultiArray && Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | Array to assign and move from. |