Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/TMultiMap > API/Runtime/Core/Containers/TMultiMap/FindPair
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include | #include "Containers/Map.h" |
ValueType * FindPair
(
KeyInitType Key,
ValueInitType Value
)
Remarks
Find an association between a specified key and value. If the map contains a matching association, a pointer to the value in the map is returned. Otherwise nullptr is returned. The pointer is only valid as long as the map isn't changed.
Parameters
| Name | Description |
|---|---|
| Key | The key to find. |
| Value | The value to find. |