Navigation
API > API/Runtime > API/Runtime/uLangCore > API/Runtime/uLangCore/THashTable
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
const KeyValueType * FindByPredicate
(
Predicate Pred |
Finds an key-value pair which matches a predicate functor. | uLang/Common/Containers/HashTable.h | |
KeyValueType * FindByPredicate
(
Predicate Pred |
Finds a key-value pair which matches a predicate functor. | uLang/Common/Containers/HashTable.h |
FindByPredicate(Predicate)
Description
Finds an key-value pair which matches a predicate functor. The predicate must take a `TKeyValuePair
| Name | FindByPredicate |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/HashTable.h |
| Include Path | #include "uLang/Common/Containers/HashTable.h" |
template<typename Predicate>
const KeyValueType * FindByPredicate
(
Predicate Pred
) const
Pointer to the first key-value pair for which the predicate returns true, or nullptr if none is found.
Parameters
| Name | Remarks |
|---|---|
| Pred | The functor to apply to each key-value pair. |
See Also
-
FilterByPredicate
-
ContainsByPredicate
FindByPredicate(Predicate)
Description
Finds a key-value pair which matches a predicate functor. The predicate must take a `TKeyValuePair
| Name | FindByPredicate |
| Type | function |
| Header File | /Engine/Source/Runtime/Solaris/uLangCore/Public/uLang/Common/Containers/HashTable.h |
| Include Path | #include "uLang/Common/Containers/HashTable.h" |
template<typename Predicate>
KeyValueType * FindByPredicate
(
Predicate Pred
)
Pointer to the first key-value pair for which the predicate returns true, or nullptr if none is found.
Parameters
| Name | Remarks |
|---|---|
| Pred | The functor to apply to each key-value pair. true, or nullptr if none is found. |
See Also
-
FilterByPredicate
-
ContainsByPredicate