Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSortedMap
The base of TSortedMap reverse iterators.
| Name | TBaseReverseIterator |
| Type | class |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
Syntax
template<bool bConst>
class TBaseReverseIterator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TBaseReverseIterator
(
PairType* InData, |
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 > | Once we add reverse iterator to TArray, this class and TBaseIterator could be merged with a template parameter for forward vs reverse. | Containers/SortedMap.h |
| PairType | std::conditional_t< bConst, const typename ElementArrayType::ElementType, typename ElementArrayType::ElementType > | Containers/SortedMap.h | |
| SizeType | ElementArrayType::SizeType | 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 TBaseReverseIterator& Rhs |
Containers/SortedMap.h | ||
PairType & operator*() |
Containers/SortedMap.h | ||
TBaseReverseIterator & operator++() |
Containers/SortedMap.h | ||
bool operator==
(
const TBaseReverseIterator& Rhs |
Containers/SortedMap.h | ||
PairType * operator->() |
Containers/SortedMap.h |