Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void MoveConstructItems
(
void* Dest, |
Move constructs a range of items into memory. | Templates/MemoryOps.h | |
void MoveConstructItems
(
void* Dest, |
Templates/MemoryOps.h |
MoveConstructItems(void , const ElementType , SizeType)
Description
Move constructs a range of items into memory.
| Name | MoveConstructItems |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Templates/MemoryOps.h |
| Include Path | #include "Templates/MemoryOps.h" |
template<typename ElementType, typename SizeType>
void MoveConstructItems
(
void * Dest,
const ElementType * Source,
SizeType Count
)
Parameters
| Name | Remarks |
|---|---|
| Dest | The memory location to start moving into. |
| Source | A pointer to the first item to move from. |
| Count | The number of elements to move. |
MoveConstructItems(void , const ElementType , SizeType)
| Name | MoveConstructItems |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Templates/MemoryOps.h |
| Include Path | #include "Templates/MemoryOps.h" |
template<typename ElementType, typename SizeType>
void MoveConstructItems
(
void * Dest,
const ElementType * Source,
SizeType Count
)