TSortedMap::Append

Add all items from another map to our map (if any keys are in both, the value from the other map wins).

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
(
    const TSortedMap< KeyType, ValueType, OtherArrayAllocator, OtherSortPredicate > & OtherMap
)

Remarks

Add all items from another map to our map (if any keys are in both, the value from the other map wins).

Parameters

Parameter

Description

OtherMap

The other map of items to add.