Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSparseArray
The base class of sparse array iterators.
| Name | TBaseIterator |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SparseArray.h |
| Include Path | #include "Containers/SparseArray.h" |
Syntax
template<bool bConst>
class TBaseIterator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBaseIterator
(
ArrayType& InArray, |
Containers/SparseArray.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| ArrayType | std::conditional_t< bConst, const TSparseArray, TSparseArray > | Containers/SparseArray.h | |
| BitArrayItType | TConstSetBitIterator< typename Allocator::BitArrayAllocator > | Containers/SparseArray.h | |
| ItElementType | std::conditional_t< bConst, const ElementType, ElementType > | Containers/SparseArray.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 GetIndex() |
Containers/SparseArray.h | ||
const FRelativeBitReference & GetRelativeBitReference() |
Containers/SparseArray.h |
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
operator bool() |
Conversion to "bool" returning true if the iterator is valid. | Containers/SparseArray.h | |
bool operator!() |
Inverse of the "bool" operator | Containers/SparseArray.h | |
bool operator!=
(
const TBaseIterator& Rhs |
Containers/SparseArray.h | ||
ItElementType & operator*() |
Containers/SparseArray.h | ||
TBaseIterator & operator++() |
Containers/SparseArray.h | ||
bool operator==
(
const TBaseIterator& Rhs |
Containers/SparseArray.h | ||
ItElementType * operator->() |
Containers/SparseArray.h |