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