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