Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/TBitArray
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include | #include "Containers/BitArray.h" |
void RemoveAtSwap
(
int32 BaseIndex,
int32 NumBitsToRemove
)
Remarks
Removes bits from the array by swapping them with bits at the end of the array. This is mainly implemented so that other code using TArray::RemoveSwap will have matching indices.
Parameters
| Name | Description |
|---|---|
| BaseIndex | The index of the first bit to remove. |
| NumBitsToRemove | The number of consecutive bits to remove. |