Navigation
API > API/Runtime > API/Runtime/CoreUObject > API/Runtime/CoreUObject/FScriptSetHelper
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
uint8 * GetElementPtr
(
int32 InternalIndex |
Returns a uint8 pointer to the element in the set. | UObject/UnrealType.h | |
const uint8 * GetElementPtr
(
int32 InternalIndex |
Returns a uint8 pointer to the element in the set. | UObject/UnrealType.h | |
uint8 * GetElementPtr
(
const FIterator Iterator |
Returns a uint8 pointer to the element in the set. | UObject/UnrealType.h | |
const uint8 * GetElementPtr
(
const FIterator Iterator |
Returns a uint8 pointer to the element in the set. | UObject/UnrealType.h |
GetElementPtr(int32)
Description
Returns a uint8 pointer to the element in the set.
| Name | GetElementPtr |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UnrealType.h |
| Include Path | #include "UObject/UnrealType.h" |
uint8 * GetElementPtr
(
int32 InternalIndex
)
Pointer to the element, or nullptr if the set is empty.
Parameters
| Name | Remarks |
|---|---|
| InternalIndex | index of the item to return a pointer to. |
GetElementPtr(int32)
Description
Returns a uint8 pointer to the element in the set.
| Name | GetElementPtr |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UnrealType.h |
| Include Path | #include "UObject/UnrealType.h" |
const uint8 * GetElementPtr
(
int32 InternalIndex
) const
Pointer to the element, or nullptr if the set is empty.
Parameters
| Name | Remarks |
|---|---|
| InternalIndex | index of the item to return a pointer to. |
GetElementPtr(const FIterator)
Description
Returns a uint8 pointer to the element in the set.
| Name | GetElementPtr |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UnrealType.h |
| Include Path | #include "UObject/UnrealType.h" |
uint8 * GetElementPtr
(
const FIterator Iterator
)
Pointer to the element, or will fail a check if an invalid iterator is provided.
Parameters
| Name | Remarks |
|---|---|
| Iterator | A valid iterator of the item to return a pointer to. |
GetElementPtr(const FIterator)
Description
Returns a uint8 pointer to the element in the set.
| Name | GetElementPtr |
| Type | function |
| Header File | /Engine/Source/Runtime/CoreUObject/Public/UObject/UnrealType.h |
| Include Path | #include "UObject/UnrealType.h" |
const uint8 * GetElementPtr
(
const FIterator Iterator
) const
Pointer to the element, or will fail a check if an invalid iterator is provided.
Parameters
| Name | Remarks |
|---|---|
| Iterator | A valid iterator of the item to return a pointer to. |