Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/THashTable
| Name | Iterator |
| Type | class |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/HashTable.h |
| Include Path | #include "uLang/Common/Containers/HashTable.h" |
Syntax
template<bool bConst>
class Iterator
Constructors
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| uLang/Common/Containers/HashTable.h |
Typedefs
| Name | Type | Remarks | Include Path |
|---|---|---|---|
| iterator_category | std::forward_iterator_tag | uLang/Common/Containers/HashTable.h | |
| pointer | typename std::conditional_t< bConst, const KeyValueType *, KeyValueType * > | uLang/Common/Containers/HashTable.h | |
| reference | typename std::conditional_t< bConst, const KeyValueType &, KeyValueType & > | uLang/Common/Containers/HashTable.h | |
| value_type | KeyValueType | uLang/Common/Containers/HashTable.h |
Variables
Protected
| Name | Type | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|---|
| _CurrentEntry | SEntry * | uLang/Common/Containers/HashTable.h | ||
| _End | SEntry * | uLang/Common/Containers/HashTable.h |
Functions
Public
Operators
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ULANG_FORCEINLINE bool operator!=
(
const Iterator& Other |
uLang/Common/Containers/HashTable.h | ||
ULANG_FORCEINLINE std::enable_if_t operator* () |
uLang/Common/Containers/HashTable.h | ||
ULANG_FORCEINLINE std::enable_if_t< _bConst, reference > operator* () |
uLang/Common/Containers/HashTable.h | ||
ULANG_FORCEINLINEIterator & operator++() |
Prefix increment overload. | uLang/Common/Containers/HashTable.h | |
ULANG_FORCEINLINEIterator operator++
(
int |
Postfix increment overload. | uLang/Common/Containers/HashTable.h | |
ULANG_FORCEINLINE bool operator==
(
const Iterator& Other |
uLang/Common/Containers/HashTable.h | ||
ULANG_FORCEINLINE std::enable_if_t operator-> () |
uLang/Common/Containers/HashTable.h | ||
ULANG_FORCEINLINE std::enable_if_t< _bConst, pointer > operator-> () |
uLang/Common/Containers/HashTable.h |