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