Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TMapBase
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
ValueType & Add
(
const KeyType& InKey |
Set a default value associated with a key. | Containers/Map.h | |
ValueType & Add
(
KeyType&& InKey |
Containers/Map.h | ||
| Set the value associated with a key. | Containers/Map.h | ||
| Containers/Map.h | |||
ValueType & Add
(
const KeyType& InKey, |
Set the value associated with a key. | Containers/Map.h | |
ValueType & Add
(
const KeyType& InKey, |
Containers/Map.h | ||
ValueType & Add
(
KeyType&& InKey, |
Containers/Map.h | ||
ValueType & Add
(
KeyType&& InKey, |
Containers/Map.h |
Add(const KeyType &)
Description
Set a default value associated with a key.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.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/Map.h |
| Include Path | #include "Containers/Map.h" |
ValueType & Add
(
KeyType && InKey
)
Add(const TTuple< KeyType, ValueType > &)
Description
Set the value associated with a key.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
ValueType & Add
(
const TTuple < KeyType, ValueType > & InKeyValue
)
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 |
|---|---|
| InKeyValue | A Tuple containing the Key and Value to associate together |
Add(TTuple< KeyType, ValueType > &&)
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
ValueType & Add
(
TTuple < KeyType, ValueType > && InKeyValue
)
Add(const KeyType &, const ValueType &)
Description
Set the value associated with a key.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
ValueType & Add
(
const KeyType & InKey,
const ValueType & InValue
)
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. |
| InValue | The value to associate with the key. |
Add(const KeyType &, ValueType &&)
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
ValueType & Add
(
const KeyType & InKey,
ValueType && InValue
)
Add(KeyType &&, const ValueType &)
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
ValueType & Add
(
KeyType && InKey,
const ValueType & InValue
)
Add(KeyType &&, ValueType &&)
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include Path | #include "Containers/Map.h" |
ValueType & Add
(
KeyType && InKey,
ValueType && InValue
)