Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/Containers
References
| Module | Core |
| Header | /Engine/Source/Runtime/Core/Public/Containers/Map.h |
| Include | #include "Containers/Map.h" |
Syntax
template<typename KeyInitType, typename ValueInitType>
class TPairInitializer
Remarks
An initializer type for pairs that's passed to the pair set when adding a new pair.
Variables
| Type | Name | Description | |
|---|---|---|---|
| std::conditional_t< std::is_rvalue_reference_v< KeyInitType >, KeyInitType &, KeyInitType > | Key | ||
| std::conditional_t< std::is_rvalue_reference_v< ValueInitType >, ValueInitType &, ValueInitType > | Value |
Constructors
| Type | Name | Description | |
|---|---|---|---|
TPairInitializer
(
const TPair< KeyType, ValueType >& Pair |
Implicit conversion to pair initializer. | ||
TPairInitializer
(
KeyInitType InKey, |
Initialization constructor. |
Operators
| Type | Name | Description | |
|---|---|---|---|