Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBitArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void InsertRange
(
const InWordType* ReadBits, |
Inserts multiple bits read from the given pointer, starting at the given index. | Containers/BitArray.h | |
void InsertRange
(
const TBitArray< OtherAllocator >& ReadBits, |
Inserts multiple bits read from the given BitArray into the array, starting at the given index. | Containers/BitArray.h |
InsertRange(const InWordType *, int32, int32, int32)
Description
Inserts multiple bits read from the given pointer, starting at the given index.
| Name | InsertRange |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path | #include "Containers/BitArray.h" |
template<typename InWordType>
void InsertRange
(
const InWordType * ReadBits,
int32 Index,
int32 NumBitsToAdd,
int32 ReadOffsetBits
)
Parameters
| Name | Remarks |
|---|---|
| ReadBits | The address of sized integers to read the bits from. Bits are read from ReadBits in the current platform's mathematical bitorder (ReadBits[0] & 0x1, ReadBits[0] & 0x2, ... ReadBits[0] & 0x100, ... ReadBits[0] & 0x80000000, ReadBits[1] & 0x1 ... |
| Index | The index at which to add; must be 0 <= Index <= Num(). |
| NumBitsToAdd | The number of bits to add. Must be >= 0. |
| ReadOffsetBits | Number of bits into ReadBits at which to start reading. |
InsertRange(const TBitArray< OtherAllocator > &, int32, int32, int32)
Description
Inserts multiple bits read from the given BitArray into the array, starting at the given index.
| Name | InsertRange |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path | #include "Containers/BitArray.h" |
template<typename OtherAllocator>
void InsertRange
(
const TBitArray < OtherAllocator > & ReadBits,
int32 Index,
int32 NumBitsToAdd,
int32 ReadOffsetBits
)
Parameters
| Name | Remarks |
|---|---|
| ReadBits | The value to set the bits to. |
| Index | The index at which to add; must be 0 <= Index <= Num(). |
| NumBitsToAdd | The number of bits to add. Must be >= 0. |
| ReadOffsetBits | Number of bits into ReadBits at which to start reading. |