Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers > API/Runtime/Core/Containers/TMultiMap
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include | #include "Containers/Map.h" |
template<typename Allocator>
void MultiFind
(
KeyInitType Key,
TArray < 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 the values associated with the key. |
| bMaintainOrder | true if the Values array should be in the same order as the map's pairs. |