Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TIndirectArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void RemoveAt
(
int32 Index, |
Removes an element at given location optionally shrinking the array. | Containers/IndirectArray.h | |
void RemoveAt
(
int32 Index, |
Removes elements at given location optionally shrinking the array. | Containers/IndirectArray.h | |
void RemoveAt
(
int32 Index, |
Containers/IndirectArray.h |
RemoveAt(int32, EAllowShrinking)
Description
Removes an element at given location optionally shrinking the array.
| Name | RemoveAt |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/IndirectArray.h |
| Include Path | #include "Containers/IndirectArray.h" |
void RemoveAt
(
int32 Index,
EAllowShrinking AllowShrinking
)
Parameters
| Name | Remarks |
|---|---|
| Index | Location in array of the element to remove. |
| AllowShrinking | (Optional) Tells if this call can shrink array if suitable after remove. Default is yes. |
RemoveAt(int32, int32, EAllowShrinking)
Description
Removes elements at given location optionally shrinking the array.
| Name | RemoveAt |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/IndirectArray.h |
| Include Path | #include "Containers/IndirectArray.h" |
void RemoveAt
(
int32 Index,
int32 Count,
EAllowShrinking AllowShrinking
)
Parameters
| Name | Remarks |
|---|---|
| Index | Location in array of the first element to remove. |
| Count | Number of elements to remove. |
| AllowShrinking | (Optional) Tells if this call can shrink array if suitable after remove. Default is yes. |
RemoveAt(int32, int32, bool)
| Name | RemoveAt |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/IndirectArray.h |
| Include Path | #include "Containers/IndirectArray.h" |
void RemoveAt
(
int32 Index,
int32 Count,
bool bAllowShrinking
)