Navigation
API > API/Plugins > API/Plugins/UAF
A iterator that iterates over all name/value pairs within an unbound value map.
| Name | TUnboundValueMapIterator |
| Type | class |
| Header File | /Engine/Plugins/Experimental/UAF/UAF/Source/UAF/Public/UAF/ValueRuntime/UnboundValueMap.h |
| Include Path | #include "UAF/ValueRuntime/UnboundValueMap.h" |
Syntax
template<class ContainerType>
class TUnboundValueMapIterator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| Creates an empty iterator. | UAF/ValueRuntime/UnboundValueMap.h | ||
TUnboundValueMapIterator
(
ContainerType& Map |
Creates an iterator over the name/value map entries within the specified unbound value map. | UAF/ValueRuntime/UnboundValueMap.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| NamePtrType | typename std::conditional< bIsContainerConst, const FName *, FName * >::type | UAF/ValueRuntime/UnboundValueMap.h | |
| ValuePtrType | typename std::conditional< bIsContainerConst, const typename ContainerType::ValueType *, typename ContainerType::ValueType * >::type | UAF/ValueRuntime/UnboundValueMap.h |
Constants
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| bIsContainerConst | bool | UAF/ValueRuntime/UnboundValueMap.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| NameEndPtr | NamePtrType | One past the last name/value pair. | UAF/ValueRuntime/UnboundValueMap.h | |
| NamePtr | NamePtrType | Current name/value pair. | UAF/ValueRuntime/UnboundValueMap.h | |
| ValuePtr | ValuePtrType | UAF/ValueRuntime/UnboundValueMap.h |
Functions
Public
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FName GetName() |
Returns the name of the current name/value pair. | UAF/ValueRuntime/UnboundValueMap.h | |
ValuePtrType GetValue() |
Returns the value of the current name/value pair. | UAF/ValueRuntime/UnboundValueMap.h |
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
operator bool() |
Returns whether or not the iterator still contains values. | UAF/ValueRuntime/UnboundValueMap.h | |
TUnboundValueMapIterator & operator++() |
Increments and moves the iterator to the next name/value pair. | UAF/ValueRuntime/UnboundValueMap.h |