Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSortedMap
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Append
(
TSortedMap< KeyType, ValueType, OtherArrayAllocator, OtherSortPredicate >&& OtherMap |
Move all items from another map into our map (if any keys are in both, the value from the other map wins) and empty the other map. | Containers/SortedMap.h | |
void Append
(
const TSortedMap< KeyType, ValueType, OtherArrayAllocator, OtherSortPredicate >& OtherMap |
Add all items from another map to our map (if any keys are in both, the value from the other map wins). | Containers/SortedMap.h |
Append(TSortedMap< KeyType, ValueType, OtherArrayAllocator, OtherSortPredicate > &&)
Description
Move all items from another map into our map (if any keys are in both, the value from the other map wins) and empty the other map.
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
template<typename OtherArrayAllocator, typename OtherSortPredicate>
void Append
(
TSortedMap < KeyType, ValueType, OtherArrayAllocator, OtherSortPredicate > && OtherMap
)
Parameters
| Name | Remarks |
|---|---|
| OtherMap | The other map of items to move the elements from. |
Append(const TSortedMap< KeyType, ValueType, OtherArrayAllocator, OtherSortPredicate > &)
Description
Add all items from another map to our map (if any keys are in both, the value from the other map wins).
| Name | Append |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
template<typename OtherArrayAllocator, typename OtherSortPredicate>
void Append
(
const TSortedMap < KeyType, ValueType, OtherArrayAllocator, OtherSortPredicate > & OtherMap
)
Parameters
| Name | Remarks |
|---|---|
| OtherMap | The other map of items to add. |