Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSortedSet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ElementType * Find
(
KeyInitType Key |
Returns the value associated with a specified key. | Containers/SortedSet.h | |
const ElementType * Find
(
KeyInitType Key |
Containers/SortedSet.h |
Find(KeyInitType)
Description
Returns the value associated with a specified key.
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedSet.h |
| Include Path | #include "Containers/SortedSet.h" |
ElementType * Find
(
KeyInitType Key
)
A pointer to the value associated with the specified key, or nullptr if the key isn't contained in this set. The pointer (only valid until the next change to any key in the set).
Parameters
| Name | Remarks |
|---|---|
| Key | The key to search for. |
Find(KeyInitType)
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedSet.h |
| Include Path | #include "Containers/SortedSet.h" |
const ElementType * Find
(
KeyInitType Key
) const