Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBitArray
Description
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.
| Name | RemoveAtSwap |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path | #include "Containers/BitArray.h" |
void RemoveAtSwap
(
int32 BaseIndex,
int32 NumBitsToRemove
)
Parameters
| Name | Remarks |
|---|---|
| BaseIndex | The index of the first bit to remove. |
| NumBitsToRemove | The number of consecutive bits to remove. |