Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/TMapBase
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include | #include "Containers/Map.h" |
const KeyType * FindKey
(
ValueInitType Value
) const
Remarks
Find the key associated with the specified value.
The time taken is O(N) in the number of pairs. A pointer to the key associated with the specified value, or nullptr if the value isn't contained in this map. The pointer is only valid until the next change to any key in the map.
Parameters
| Name | Description |
|---|---|
| Value | The value to search for |