Navigation
API > API/Runtime > API/Runtime/Core
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
decltype(auto) MakeAttributeSPLambda
(
const TSharedRef< UserClass, Mode >& InUserObjectRef, |
Helper function for creating TAttributes from a weak shared pointer C++ lambda delegate | Misc/Attribute.h | |
decltype(auto) MakeAttributeSPLambda
(
UserClass* InUserObject, |
Misc/Attribute.h |
MakeAttributeSPLambda(const TSharedRef< UserClass, Mode > &, LambdaType &&, PayloadTypes &&...)
Description
Helper function for creating TAttributes from a weak shared pointer C++ lambda delegate
| Name | MakeAttributeSPLambda |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Attribute.h |
| Include Path | #include "Misc/Attribute.h" |
template<typename UserClass, ESPMode Mode, typename LambdaType, typename... PayloadTypes>
decltype(auto) MakeAttributeSPLambda
(
const TSharedRef < UserClass, Mode > & InUserObjectRef,
LambdaType && InCallable,
PayloadTypes &&... InputPayload
)
MakeAttributeSPLambda(UserClass *, LambdaType &&, PayloadTypes &&...)
| Name | MakeAttributeSPLambda |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Misc/Attribute.h |
| Include Path | #include "Misc/Attribute.h" |
template<typename UserClass, typename LambdaType, typename... PayloadTypes>
decltype(auto) MakeAttributeSPLambda
(
UserClass * InUserObject,
LambdaType && InCallable,
PayloadTypes &&... InputPayload
)