Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSet
The base type of whole set iterators.
| Name | TBaseIterator |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
Syntax
template<bool bConst, bool bRangedFor>
class TBaseIterator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBaseIterator
(
const ElementItType& InElementIt |
Containers/Set.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| ElementItType | std::conditional_t< bConst, std::conditional_t< bRangedFor, typename ElementArrayType::TRangedForConstIterator, typename ElementArrayType::TConstIterator >, std::conditional_t< bRangedFor, typename ElementArrayType::TRangedForIterator, typename ElementArrayType::TIterator > > | Containers/Set.h | |
| ItElementType | std::conditional_t< bConst, const ElementType, ElementType > | Containers/Set.h |
Variables
Public
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| ElementIt | ElementItType | Containers/Set.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FSetElementId GetId() |
Accessors. | Containers/Set.h |
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
operator bool() |
Conversion to "bool" returning true if the iterator is valid. | Containers/Set.h | |
bool operator!() |
Inverse of the "bool" operator | Containers/Set.h | |
bool operator!=
(
const TBaseIterator& Rhs |
Containers/Set.h | ||
ItElementType & operator*() |
Containers/Set.h | ||
TBaseIterator & operator++() |
Advances the iterator to the next element. | Containers/Set.h | |
bool operator==
(
const TBaseIterator& Rhs |
Containers/Set.h | ||
ItElementType * operator->() |
Containers/Set.h |