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