Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/TInlineValue
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
TInlineValue () |
Default construction to an empty container | Misc/InlineValue.h | |
TInlineValue
(
T&& In |
Construction from any type relating to BaseType. | Misc/InlineValue.h | |
TInlineValue
(
TInlineValue&& In |
Move construction/assignment | Misc/InlineValue.h | |
TInlineValue
(
const TInlineValue& In |
Copy construction/assignment is disabled | Misc/InlineValue.h | |
TInlineValue
(
EInPlace, |
In-place construction of BaseType from a set of arguments. | Misc/InlineValue.h |
TInlineValue()
Description
Default construction to an empty container
| Name | TInlineValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/InlineValue.h |
| Include Path | #include "Misc/InlineValue.h" |
TInlineValue()
TInlineValue(T &&)
Description
Construction from any type relating to BaseType.
| Name | TInlineValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/InlineValue.h |
| Include Path | #include "Misc/InlineValue.h" |
template<typename T, typename>
TInlineValue
(
T && In
)
TInlineValue(TInlineValue &&)
Description
Move construction/assignment
| Name | TInlineValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/InlineValue.h |
| Include Path | #include "Misc/InlineValue.h" |
TInlineValue
(
TInlineValue && In
)
TInlineValue(const TInlineValue &)
Description
Copy construction/assignment is disabled
| Name | TInlineValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/InlineValue.h |
| Include Path | #include "Misc/InlineValue.h" |
TInlineValue
(
const TInlineValue & In
)
TInlineValue(EInPlace, ArgTypes &&...)
Description
In-place construction of BaseType from a set of arguments.
| Name | TInlineValue |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/InlineValue.h |
| Include Path | #include "Misc/InlineValue.h" |
template<typename... ArgTypes>
TInlineValue
(
EInPlace ,
ArgTypes &&... Args
)