Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType * FindByHash
(
uint32 KeyHash, |
Finds an element with a pre-calculated hash and a key that can be compared to KeyType. | Containers/Set.h | |
const ElementType * FindByHash
(
uint32 KeyHash, |
Containers/Set.h |
FindByHash(uint32, const ComparableKey &)
Description
Finds an element with a pre-calculated hash and a key that can be compared to KeyType.
| Name | FindByHash |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
template<typename ComparableKey>
ElementType * FindByHash
(
uint32 KeyHash,
const ComparableKey & Key
)
A pointer to the contained element or nullptr.
See Also
- Class documentation section on ByHash() functions
FindByHash(uint32, const ComparableKey &)
| Name | FindByHash |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
template<typename ComparableKey>
const ElementType * FindByHash
(
uint32 KeyHash,
const ComparableKey & Key
) const