Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSortedMap
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ValueType * Find
(
KeyConstPointerType Key |
Returns the value associated with a specified key. | Containers/SortedMap.h | |
const ValueType * Find
(
KeyConstPointerType Key |
Containers/SortedMap.h |
Find(KeyConstPointerType)
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
(
KeyConstPointerType 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(KeyConstPointerType)
| Name | Find |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
const ValueType * Find
(
KeyConstPointerType Key
) const