TSortedMap::Append

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.

Choose your operating system:

Windows

macOS

Linux

References

Module

Core

Header

/Engine/Source/Runtime/Core/Public/Containers/SortedMap.h

Include

#include "Containers/SortedMap.h"

Syntax

template<typename OtherArrayAllocator, typename OtherSortPredicate>
void Append
(
    TSortedMap< KeyType, ValueType, OtherArrayAllocator, OtherSortPredicate > && OtherMap
)

Remarks

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.

Parameters

Parameter

Description

OtherMap

The other map of items to move the elements from.