Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSet
Overloads
| Name |
Remarks |
Include Path |
Unreal Specifiers |
|
|
Containers/Set.h |
|
void Append
(
TArray< ElementType, ArrayAllocator >&& InElements
)
|
|
Containers/Set.h |
|
void Append
(
const TSet< ElementType, KeyFuncs, OtherAllocator >& OtherSet
)
|
Add all items from another set to our set (union without creating a new set) |
Containers/Set.h |
|
void Append
(
TSet< ElementType, KeyFuncs, OtherAllocator >&& OtherSet
)
|
|
Containers/Set.h |
|
void Append
(
std::initializer_list< ElementType > InitList
)
|
|
Containers/Set.h |
|
|
Add all items from another set to our set (union without creating a new set) Compatible element type version. |
Containers/Set.h |
|
|
Add all items from another set to our set (union without creating a new set) Compatible element type version. |
Containers/Set.h |
|
Append(TArrayView< const ElementType >)
| |
|
| Name |
Append |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path |
#include "Containers/Set.h" |
void Append
(
TArrayView < const ElementType > InElements
)
Append(TArray< ElementType, ArrayAllocator > &&)
| |
|
| Name |
Append |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path |
#include "Containers/Set.h" |
template<typename ArrayAllocator>
void Append
(
TArray < ElementType, ArrayAllocator > && InElements
)
Append(const TSet< ElementType, KeyFuncs, OtherAllocator > &)
Description
Add all items from another set to our set (union without creating a new set)
| |
|
| Name |
Append |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path |
#include "Containers/Set.h" |
template<typename OtherAllocator>
void Append
(
const TSet < ElementType, KeyFuncs, OtherAllocator > & OtherSet
)
Parameters
| Name |
Remarks |
| OtherSet |
The other set of items to add. |
Append(TSet< ElementType, KeyFuncs, OtherAllocator > &&)
| |
|
| Name |
Append |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path |
#include "Containers/Set.h" |
template<typename OtherAllocator>
void Append
(
TSet < ElementType, KeyFuncs, OtherAllocator > && OtherSet
)
Append(std::initializer_list< ElementType >)
| |
|
| Name |
Append |
| Type |
function |
| Header File |
/Engine/Source/Runtime/Core/Public/Containers/Set.h |
| Include Path |
#include "Containers/Set.h" |
void Append
(
std::initializer_list< ElementType > InitList
)
Append(const TSet< typename TContainerElementTypeCompatibility< ElementType >::CopyFromOtherType, OtherKeyFuncs, OtherAllocator > &)
Description
Add all items from another set to our set (union without creating a new set) Compatible element type version.
| |
|
| Name |
Append |
| 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 >>
void Append
(
const TSet < typename TContainerElementTypeCompatibility < ElementType >::CopyFromOtherType, OtherKeyFuncs, OtherAllocator > & OtherSet
)
Parameters
| Name |
Remarks |
| OtherSet |
The other set of items to add. |
Append(TSet< typename TContainerElementTypeCompatibility< ElementType >::CopyFromOtherType, OtherKeyFuncs, Allocator > &&)
Description
Add all items from another set to our set (union without creating a new set) Compatible element type version.
| |
|
| Name |
Append |
| 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 >>
void Append
(
TSet < typename TContainerElementTypeCompatibility < ElementType >::CopyFromOtherType, OtherKeyFuncs, Allocator > && OtherSet
)
Parameters
| Name |
Remarks |
| OtherSet |
The other set of items to add. |