Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Move
(
T& A, |
This is used to provide type specific behavior for a copy which cannot change the value of B. | Templates/UnrealTemplate.h | |
void Move
(
T& A, |
This is used to provide type specific behavior for a move which may change the value of B. | Templates/UnrealTemplate.h |
Move(T &, typename TMoveSupportTraits< T >::Copy)
Description
This is used to provide type specific behavior for a copy which cannot change the value of B.
| Name | Move |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Templates/UnrealTemplate.h |
| Include Path | #include "Templates/UnrealTemplate.h" |
template<typename T>
void Move
(
T & A,
typename TMoveSupportTraits < T >::Copy B
)
Move(T &, typename TMoveSupportTraits< T >::Move)
Description
This is used to provide type specific behavior for a move which may change the value of B.
| Name | Move |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Templates/UnrealTemplate.h |
| Include Path | #include "Templates/UnrealTemplate.h" |
template<typename T>
void Move
(
T & A,
typename TMoveSupportTraits < T >::Move B
)