Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBitArray
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void SetRangeFromRange
(
int32 Index, |
Sets range of bits within the TBitArray to the values read out of a pointer. | Containers/BitArray.h | |
void SetRangeFromRange
(
int32 Index, |
Sets range of bits within this TBitArray to the values read out another TBitArray. | Containers/BitArray.h |
SetRangeFromRange(int32, int32, const InWordType *, int32)
Description
Sets range of bits within the TBitArray to the values read out of a pointer.
| Name | SetRangeFromRange |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path | #include "Containers/BitArray.h" |
template<typename InWordType>
void SetRangeFromRange
(
int32 Index,
int32 NumBitsToSet,
const InWordType * ReadBits,
int32 ReadOffsetBits
)
Parameters
| Name | Remarks |
|---|---|
| Index | The index of the first bit to set; must be 0 <= Index <= Num(). |
| NumBitsToSet | The number of bits to set, must satisify 0 <= NumBitsToSet && Index + NumBitsToSet <= Num(). |
| 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 ... |
| ReadOffsetBits | Number of bits into ReadBits at which to start reading. |
SetRangeFromRange(int32, int32, const TBitArray< OtherAllocator > &, int32)
Description
Sets range of bits within this TBitArray to the values read out another TBitArray.
| Name | SetRangeFromRange |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path | #include "Containers/BitArray.h" |
template<typename OtherAllocator>
void SetRangeFromRange
(
int32 Index,
int32 NumBitsToSet,
const TBitArray < OtherAllocator > & ReadBits,
int32 ReadOffsetBits
)
Parameters
| Name | Remarks |
|---|---|
| Index | The index of the first bit to set; must be 0 <= Index <= Num(). |
| NumBitsToSet | The number of bits to set, must satisify 0 <= NumBitsToSet && Index + NumBitsToSet <= Num(). |
| ReadBits | The value to set the bits to. |
| ReadOffsetBits | Number of bits into ReadBits at which to start reading. |