Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBitArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Insert
(
bool Value, |
Adds a bit with the given value at the given index in the array. | Containers/BitArray.h | |
void Insert
(
bool Value, |
Inserts multiple bits with the given value into the array, starting at the given Index. | Containers/BitArray.h |
Insert(bool, int32)
Description
Adds a bit with the given value at the given index in the array.
| Name | Insert |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path | #include "Containers/BitArray.h" |
void Insert
(
bool Value,
int32 Index
)
Parameters
| Name | Remarks |
|---|---|
| Value | The value of the bit to add |
| Index | The index at which to add; must be 0 <= Index <= Num(). |
Insert(bool, int32, int32)
Description
Inserts multiple bits with the given value into the array, starting at the given Index.
| Name | Insert |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path | #include "Containers/BitArray.h" |
void Insert
(
bool Value,
int32 Index,
int32 NumBitsToAdd
)
Parameters
| Name | Remarks |
|---|---|
| Value | The value of the bits to add |
| Index | The index at which to add; must be 0 <= Index <= Num(). |
| NumBitsToAdd | The number of bits to add. Must be >= 0. |