Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/TConstSharedStruct
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Initialize () |
Initializes from a templated struct type. | StructUtils/SharedStruct.h | |
void Initialize
(
const T& Struct |
Initializes from templated struct instance. | StructUtils/SharedStruct.h | |
void Initialize
(
TArgs&&... InArgs |
Initializes from struct type and emplace args. | StructUtils/SharedStruct.h |
Initialize()
Description
Initializes from a templated struct type.
| Name | Initialize |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
void Initialize()
Initialize(const T &)
Description
Initializes from templated struct instance. This will create a new instance of the shared struct memory.
| Name | Initialize |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
template<typename T, typename>
void Initialize
(
const T & Struct
)
Initialize(TArgs &&...)
Description
Initializes from struct type and emplace args. This will create a new instance of the shared struct memory.
| Name | Initialize |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/StructUtils/SharedStruct.h |
| Include Path | #include "StructUtils/SharedStruct.h" |
template<typename T, typename... TArgs, typename>
void Initialize
(
TArgs &&... InArgs
)