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 SetRange
&40;
int32 Index,
int32 NumBitsToSet,
bool Value
&41;
Remarks
Sets or unsets a range of bits within the array.
Parameters
| Name | Description |
|---|---|
| Index | The index of the first bit to set; must be 0 <= Index <= Num(). |
| NumBitsToSet | The number of bits to set, must satisify Index + NumBitsToSet <= Num(). |
| Value | The value to set the bits to. |