Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TSet () |
Initialization constructor. | Containers/Set.h | |
| Copy constructor. | Containers/Set.h | ||
TSet
(
TArrayView< const ElementType > InArrayView |
Containers/Set.h | ||
| Containers/Set.h | |||
TSet
(
FIntrusiveUnsetOptionalState Tag |
Containers/Set.h | ||
TSet
(
std::initializer_list< ElementType > InitList |
Initializer list constructor. | Containers/Set.h | |
| Move constructor. | Containers/Set.h | ||
| Constructor for moving elements from a TSet with a different SetAllocator | Containers/Set.h | ||
| Constructor for copying elements from a TSet with a different SetAllocator | Containers/Set.h |
TSet()
Description
Initialization constructor.
| Name | TSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet()
TSet(const TSet &)
Description
Copy constructor.
| Name | TSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet
(
const TSet & Copy
)
TSet(TArrayView< const ElementType >)
| Name | TSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet
(
TArrayView < const ElementType > InArrayView
)
TSet(TArray< ElementType > &&)
| Name | TSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet
(
TArray < ElementType > && InArray
)
TSet(FIntrusiveUnsetOptionalState)
| Name | TSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet
(
FIntrusiveUnsetOptionalState Tag
)
TSet(std::initializer_list< ElementType >)
Description
Initializer list constructor.
| Name | TSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet
(
std::initializer_list< ElementType > InitList
)
TSet(TSet &&)
Description
Move constructor.
| Name | TSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet
(
TSet && Other
)
TSet(TSet< ElementType, KeyFuncs, OtherAllocator > &&)
Description
Constructor for moving elements from a TSet with a different SetAllocator
| Name | TSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
template<typename OtherAllocator>
TSet
(
TSet < ElementType, KeyFuncs, OtherAllocator > && Other
)
TSet(const TSet< ElementType, KeyFuncs, OtherAllocator > &)
Description
Constructor for copying elements from a TSet with a different SetAllocator
| Name | TSet |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
template<typename OtherAllocator>
TSet
(
const TSet < ElementType, KeyFuncs, OtherAllocator > & Other
)