Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TStripedMapBase
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
void Add
(
const KeyType& InKey, |
Set the value associated with a key. | Containers/StripedMap.h | |
void Add
(
const KeyType& InKey, |
Set the value associated with a key. | Containers/StripedMap.h | |
void Add
(
KeyType&& InKey, |
Set the value associated with a key. | Containers/StripedMap.h | |
void Add
(
KeyType&& InKey, |
Set the value associated with a key. | Containers/StripedMap.h |
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/StripedMap.h |
| Include Path | #include "Containers/StripedMap.h" |
void Add
(
const KeyType & InKey,
const ValueType & InValue
)
Parameters
| Name | Remarks |
|---|---|
| InKey | The key to associate the value with. |
| InValue | The value to associate with the key. |
Add(const KeyType &, ValueType &&)
Description
Set the value associated with a key.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/StripedMap.h |
| Include Path | #include "Containers/StripedMap.h" |
void Add
(
const KeyType & InKey,
ValueType && InValue
)
Parameters
| Name | Remarks |
|---|---|
| InKey | The key to associate the value with. |
| InValue | The value to associate with the key. |
Add(KeyType &&, const ValueType &)
Description
Set the value associated with a key.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/StripedMap.h |
| Include Path | #include "Containers/StripedMap.h" |
void Add
(
KeyType && InKey,
const ValueType & InValue
)
Parameters
| Name | Remarks |
|---|---|
| InKey | The key to associate the value with. |
| InValue | The value to associate with the key. |
Add(KeyType &&, ValueType &&)
Description
Set the value associated with a key.
| Name | Add |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Containers/StripedMap.h |
| Include Path | #include "Containers/StripedMap.h" |
void Add
(
KeyType && InKey,
ValueType && InValue
)
Parameters
| Name | Remarks |
|---|---|
| InKey | The key to associate the value with. |
| InValue | The value to associate with the key. |