Navigation
API > API/Runtime > API/Runtime/Core
An iterator which only iterates over the bits which are set in both of two bit-arrays, if the Both template argument is true, or either if the argument is false.
| Name | TConstDualSetBitIterator |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/BitArray.h |
| Include Path | #include "Containers/BitArray.h" |
Syntax
template<typename Allocator, typename OtherAllocator, bool Both>
class TConstDualSetBitIterator : public FRelativeBitReference
Inheritance Hierarchy
- FRelativeBitReference → TConstDualSetBitIterator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Constructor. | Containers/BitArray.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| ArrayA | const TBitArray< Allocator > & | Containers/BitArray.h | ||
| ArrayB | const TBitArray< OtherAllocator > & | Containers/BitArray.h | ||
| BaseBitIndex | int32 | Containers/BitArray.h | ||
| CurrentBitIndex | int32 | Containers/BitArray.h | ||
| UnvisitedBitMask | uint32 | Containers/BitArray.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 GetIndex() |
Index accessor. | Containers/BitArray.h |
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
operator bool() |
Conversion to "bool" returning true if the iterator is valid. | Containers/BitArray.h | |
bool operator!() |
Inverse of the "bool" operator | Containers/BitArray.h | |
TConstDualSetBitIterator & operator++() |
Advancement operator. | Containers/BitArray.h |