Navigation
API > API/Plugins > API/Plugins/UAF
A iterator that iterates over all unbound value maps within an unbound map collection.
| Name | TUnboundMapCollectionIterator |
| Type | class |
| Header File | /Engine/Plugins/Experimental/UAF/UAF/Source/UAF/Public/UAF/ValueRuntime/UnboundMapCollection.h |
| Include Path | #include "UAF/ValueRuntime/UnboundMapCollection.h" |
Syntax
template<class ContainerType>
class TUnboundMapCollectionIterator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Creates an empty iterator. | UAF/ValueRuntime/UnboundMapCollection.h | ||
TUnboundMapCollectionIterator
(
ContainerType& Collection |
Creates an iterator over the map entries within the specified collection. | UAF/ValueRuntime/UnboundMapCollection.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| EntryPtrType | typename std::conditional< bIsContainerConst, const typename ContainerType::FMapEntry *, typename ContainerType::FMapEntry * >::type | UAF/ValueRuntime/UnboundMapCollection.h | |
| MapType | typename std::conditional< bIsContainerConst, const FUnboundValueMap *, FUnboundValueMap * >::type | UAF/ValueRuntime/UnboundMapCollection.h |
Constants
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| bIsContainerConst | bool | UAF/ValueRuntime/UnboundMapCollection.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| EntryEndPtr | EntryPtrType | One past the last map entry. | UAF/ValueRuntime/UnboundMapCollection.h | |
| EntryPtr | EntryPtrType | Current map entry. | UAF/ValueRuntime/UnboundMapCollection.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
MapType GetMap() |
Returns the map from the current entry. | UAF/ValueRuntime/UnboundMapCollection.h | |
UScriptStruct * GetValueType() |
Returns the value type of the current map entry. | UAF/ValueRuntime/UnboundMapCollection.h |
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
operator bool() |
Returns whether or not the iterator still contains values. | UAF/ValueRuntime/UnboundMapCollection.h | |
TUnboundMapCollectionIterator & operator++() |
Increments and moves the iterator to the next map entry. | UAF/ValueRuntime/UnboundMapCollection.h |