Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSortedSet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FSetElementId Add
(
const ElementType& InValue, |
Adds an element to the set. | Containers/SortedSet.h | |
FSetElementId Add
(
ElementType&& InValue, |
Containers/SortedSet.h |
Add(const ElementType &, bool *)
Description
Adds an element to the set.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedSet.h |
| Include Path | #include "Containers/SortedSet.h" |
FSetElementId Add
(
const ElementType & InValue,
bool * bIsAlreadyInSetPtr
)
A handle to the value in the set (only valid until the next change to the set).
Parameters
| Name | Remarks |
|---|---|
| InValue | The value to add. |
| bIsAlreadyInSetPtr | [out] Optional pointer to bool that will be set depending on whether element is already in set |
Add(ElementType &&, bool *)
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedSet.h |
| Include Path | #include "Containers/SortedSet.h" |
FSetElementId Add
(
ElementType && InValue,
bool * bIsAlreadyInSetPtr
)