Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TMapBase
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
int32 Remove
(
KeyConstPointerType InKey |
Remove all value associations for a key. | Containers/Map.h | |
void Remove
(
FSetElementId Id |
Removes the element at the specified index. The caller has to ensure that the index is valid. | 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(FSetElementId)
Description
Removes the element at the specified index. The caller has to ensure that the index is valid.
| Name | Remove |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
void Remove
(
FSetElementId Id
)
Parameters
| Name | Remarks |
|---|---|
| Id | The index of the element to remove. |