Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSet
The base type of whole set iterators.
| Name | TBaseKeyIterator |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
Syntax
template<bool bConst>
class TBaseKeyIterator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBaseKeyIterator
(
SetType& InSet, |
Initialization constructor. | Containers/Set.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| ItElementType | std::conditional_t< bConst, const ElementType, ElementType > | Containers/Set.h | |
| KeyArgumentType | std::conditional_t< std::is_reference_v< ReferenceOrValueType >, TRetainedRef< std::remove_reference_t< ReferenceOrValueType > >, KeyInitType > | Containers/Set.h | |
| ReferenceOrValueType | TTypeTraits< typenameKeyFuncs::KeyType >::ConstPointerType | Containers/Set.h | |
| SetType | std::conditional_t< bConst, const TSet, TSet > | 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 | |
ItElementType & operator*() |
Containers/Set.h | ||
TBaseKeyIterator & operator++() |
Advances the iterator to the next element. | Containers/Set.h | |
ItElementType * operator->() |
Containers/Set.h |