Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TBitArray
Overloads
| Name |
Remarks |
Include Path |
Unreal Specifiers |
|
|
Containers/BitArray.h |
|
|
|
Containers/BitArray.h |
|
|
Move constructor. |
Containers/BitArray.h |
|
|
Copy constructor. |
Containers/BitArray.h |
|
|
|
Containers/BitArray.h |
|
|
Minimal initialization constructor. |
Containers/BitArray.h |
|
TBitArray()
| |
|
| Name |
TBitArray |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path |
#include "Containers/BitArray.h" |
constexpr TBitArray()
TBitArray(EConstEval)
| |
|
| Name |
TBitArray |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path |
#include "Containers/BitArray.h" |
consteval TBitArray
(
EConstEval
)
TBitArray(TBitArray &&)
Description
Move constructor.
| |
|
| Name |
TBitArray |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path |
#include "Containers/BitArray.h" |
TBitArray
(
TBitArray && Other
)
TBitArray(const TBitArray &)
Description
Copy constructor.
| |
|
| Name |
TBitArray |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path |
#include "Containers/BitArray.h" |
TBitArray
(
const TBitArray & Copy
)
TBitArray(const TBitArray< OtherAllocator > &)
| |
|
| Name |
TBitArray |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path |
#include "Containers/BitArray.h" |
template<typename OtherAllocator>
TBitArray
(
const TBitArray < OtherAllocator > & Copy
)
TBitArray(bool, int32)
Description
Minimal initialization constructor.
| |
|
| Name |
TBitArray |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path |
#include "Containers/BitArray.h" |
TBitArray
(
bool bValue,
int32 InNumBits
)
Parameters
| Name |
Remarks |
| Value |
The value to initial the bits to. |
| InNumBits |
The initial number of bits in the array. |