Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TMultiMap
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 Remove
(
KeyConstPointerType InKey |
Remove all value associations for a key. | Containers/Map.h | |
int32 Remove
(
KeyInitType InKey, |
Remove associations between the specified key and value from the map. | Containers/Map.h |
Remove(KeyConstPointerType)
Description
Remove all value associations for a key.
| Name | Remove |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
int32 Remove
(
KeyConstPointerType InKey
)
The number of values that were associated with the key.
Parameters
| Name | Remarks |
|---|---|
| InKey | The key to remove associated values for. |
Remove(KeyInitType, ValueInitType)
Description
Remove associations between the specified key and value from the map.
| Name | Remove |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
int32 Remove
(
KeyInitType InKey,
ValueInitType InValue
)
The number of associations removed.
Parameters
| Name | Remarks |
|---|---|
| InKey | The key part of the pair to remove. |
| InValue | The value part of the pair to remove. |