Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/TMultiMap > API/Runtime/Core/Containers/TMultiMap/MultiFindPointer
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include | #include "Containers/Map.h" |
template<typename Allocator>
void MultiFindPointer
(
KeyInitType Key,
TArray < const ValueType *, Allocator > & OutValues,
bool bMaintainOrder
) const
Remarks
Finds all values associated with the specified key.
Parameters
| Name | Description |
|---|---|
| Key | The key to find associated values for. |
| OutValues | Upon return, contains pointers to the values associated with the key. Pointers are only valid until the next change to any key in the map. |
| bMaintainOrder | true if the Values array should be in the same order as the map's pairs. |