Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/TArray > API/Runtime/Core/Containers/TArray/RemoveAt
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/Array.h |
| Include | #include "Containers/Array.h" |
template<typename CountType>
void RemoveAt
&40;
SizeType Index,
CountType Count,
bool bAllowShrinking
&41;
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. |
| bAllowShrinking | (Optional) Tells if this call can shrink array if suitable after remove. Default is true. |