Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TMultiMap
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
const ValueType * FindPair
(
KeyInitType Key, |
Find an association between a specified key and value. (const) | Containers/Map.h | |
ValueType * FindPair
(
KeyInitType Key, |
Find an association between a specified key and value. | Containers/Map.h |
FindPair(KeyInitType, ValueInitType)
Description
Find an association between a specified key and value. (const)
| Name | FindPair |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
const ValueType * FindPair
(
KeyInitType Key,
ValueInitType Value
) const
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 | Remarks |
|---|---|
| Key | The key to find. |
| Value | The value to find. |
FindPair(KeyInitType, ValueInitType)
Description
Find an association between a specified key and value.
| Name | FindPair |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
ValueType * FindPair
(
KeyInitType Key,
ValueInitType 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 | Remarks |
|---|---|
| Key | The key to find. |
| Value | The value to find. |