Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSet
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
| End - intrusive TOptional |
Containers/Set.h | ||
| Move assignment operator. | Containers/Set.h | ||
| Assignment operator for moving elements from a TSet with a different SetAllocator | Containers/Set.h | ||
| Assignment operator for copying elements from a TSet with a different SetAllocator | Containers/Set.h | ||
| Initializer list assignment operator | Containers/Set.h | ||
TSet & operator=
(
TSet< typename TContainerElementTypeCompatibility< ElementType >::CopyFromOtherType, OtherKeyFuncs, ... |
Move assignment operator. Compatible element type version. | Containers/Set.h | |
TSet & operator=
(
const TSet< typename TContainerElementTypeCompatibility< ElementType >::CopyFromOtherType, OtherKeyF... |
Assignment operator. | Containers/Set.h |
operator=(const TSet &)
Description
Assignment operator.
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet & operator=
(
const TSet & Copy
)
operator=(TSet &&)
Description
Move assignment operator.
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet & operator=
(
TSet && Other
)
operator=(TSet< ElementType, KeyFuncs, OtherAllocator > &&)
Description
Assignment operator for moving elements from a TSet with a different SetAllocator
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
template<typename OtherAllocator>
TSet & operator=
(
TSet < ElementType, KeyFuncs, OtherAllocator > && Other
)
operator=(const TSet< ElementType, KeyFuncs, OtherAllocator > &)
Description
Assignment operator for copying elements from a TSet with a different SetAllocator
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
template<typename OtherAllocator>
TSet & operator=
(
const TSet < ElementType, KeyFuncs, OtherAllocator > & Other
)
operator=(std::initializer_list< ElementType >)
Description
Initializer list assignment operator
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
TSet & operator=
(
std::initializer_list< ElementType > InitList
)
operator=(TSet< typename TContainerElementTypeCompatibility< ElementType >::CopyFromOtherType, OtherKeyFuncs, Allocator > &&)
Description
Move assignment operator. Compatible element type version.
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
template<typename OtherKeyFuncs, typename AliasElementType, std::enable_if_t<(TIsContainerElementTypeCopyable_V< AliasElementType >), int >>
TSet & operator=
(
TSet < typename TContainerElementTypeCompatibility < ElementType >::CopyFromOtherType, OtherKeyFuncs, Allocator > && Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | Set to assign and move from. |
operator=(const TSet< typename TContainerElementTypeCompatibility< ElementType >::CopyFromOtherType, OtherKeyFuncs, OtherAllocator > &)
Description
Assignment operator. First deletes all currently contained elements and then copies from other set. Compatible element type version.
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path | #include "Containers/Set.h" |
template<typename OtherKeyFuncs, typename OtherAllocator, typename AliasElementType, std::enable_if_t<(TIsContainerElementTypeCopyable_V< AliasElementType >), int >>
TSet & operator=
(
const TSet < typename TContainerElementTypeCompatibility < ElementType >::CopyFromOtherType, OtherKeyFuncs, OtherAllocator > & Other
)
Parameters
| Name | Remarks |
|---|---|
| Other | The source set to assign from. |