Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TSortedMap
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ValueType & Add
(
const KeyType& InKey |
Sets a default value associated with a key. | Containers/SortedMap.h | |
ValueType & Add
(
KeyType&& InKey |
Containers/SortedMap.h | ||
ValueType & Add
(
const KeyType& InKey, |
Sets the value associated with a key. | Containers/SortedMap.h | |
ValueType & Add
(
const KeyType& InKey, |
Containers/SortedMap.h | ||
ValueType & Add
(
KeyType&& InKey, |
Containers/SortedMap.h | ||
ValueType & Add
(
KeyType&& InKey, |
Containers/SortedMap.h |
Add(const KeyType &)
Description
Sets a default value associated with a key.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
ValueType & Add
(
const KeyType & InKey
)
A reference to the value as stored in the map. The reference is only valid until the next change to any key in the map.
Parameters
| Name | Remarks |
|---|---|
| InKey | The key to associate the value with. |
Add(KeyType &&)
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
ValueType & Add
(
KeyType && InKey
)
Add(const KeyType &, const ValueType &)
Description
Sets the value associated with a key.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
ValueType & Add
(
const KeyType & InKey,
const ValueType & InValue
)
A reference to the value as stored in the map (only valid until the next change to any key in the map).
Parameters
| Name | Remarks |
|---|---|
| InKey | The key to associate the value with. |
| InValue | The value to associate with the key. |
Add(const KeyType &, ValueType &&)
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
ValueType & Add
(
const KeyType & InKey,
ValueType && InValue
)
Add(KeyType &&, const ValueType &)
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
ValueType & Add
(
KeyType && InKey,
const ValueType & InValue
)
Add(KeyType &&, ValueType &&)
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/SortedMap.h |
| Include Path | #include "Containers/SortedMap.h" |
ValueType & Add
(
KeyType && InKey,
ValueType && InValue
)