Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Remove
(
FSetElementId ElementId |
Removes an element from the set. | Containers/Set.h | |
int32 Remove
(
KeyInitType Key |
Removes all elements from the set matching the specified key. | Containers/Set.h |
Remove(FSetElementId)
Description
Removes an element from the set.
| Name | Remove |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
void Remove
(
FSetElementId ElementId
)
Parameters
| Name | Remarks |
|---|---|
| Element | A pointer to the element in the set, as returned by Add or Find. |
Remove(KeyInitType)
Description
Removes all elements from the set matching the specified key.
| Name | Remove |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
int32 Remove
(
KeyInitType Key
)
The number of elements removed.
Parameters
| Name | Remarks |
|---|---|
| Key | The key to match elements against. |