Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSortedMap
The base of TSortedMap iterators
| Name | TBaseIterator |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
Syntax
template<bool bConst>
class TBaseIterator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBaseIterator
(
const PairItType& InElementIt |
Containers/SortedMap.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| ItKeyType | std::conditional_t< bConst, const KeyType, KeyType > | Containers/SortedMap.h | |
| ItValueType | std::conditional_t< bConst, const ValueType, ValueType > | Containers/SortedMap.h | |
| MapType | std::conditional_t< bConst, const TSortedMap, TSortedMap > | Containers/SortedMap.h | |
| PairItType | std::conditional_t< bConst, typename ElementArrayType::TConstIterator, typename ElementArrayType::TIterator > | Containers/SortedMap.h | |
| PairType | std::conditional_t< bConst, const typename ElementArrayType::ElementType, typename ElementArrayType::ElementType > | Containers/SortedMap.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FSetElementId GetId() |
Containers/SortedMap.h | ||
ItKeyType & Key() |
Containers/SortedMap.h | ||
ItValueType & Value() |
Containers/SortedMap.h |
Protected
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
operator bool() |
Conversion to "bool" returning true if the iterator is valid. | Containers/SortedMap.h | |
bool operator!=
(
const TBaseIterator& Rhs |
Containers/SortedMap.h | ||
PairType & operator*() |
Containers/SortedMap.h | ||
TBaseIterator & operator++() |
Containers/SortedMap.h | ||
bool operator==
(
const TBaseIterator& Rhs |
Containers/SortedMap.h | ||
PairType * operator->() |
Containers/SortedMap.h |