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