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