Navigation
API > API/Runtime > API/Runtime/Core > API/Runtime/Core/FSharedReferencer
Overloads
| Name | Remarks | Include Path | Unreal Specifiers |
|---|---|---|---|
FSharedReferencer & operator=
(
FSharedReferencer const& InSharedReference |
Assignment operator adds a reference to the assigned object. | Templates/SharedPointerInternals.h | |
FSharedReferencer & operator=
(
FSharedReferencer&& InSharedReference |
Move assignment operator adds no references to the assigned object. | Templates/SharedPointerInternals.h |
operator=(FSharedReferencer const &)
Description
Assignment operator adds a reference to the assigned object. If this counter was previously referencing an object, that reference will be released.
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Templates/SharedPointerInternals.h |
| Include Path | #include "Templates/SharedPointerInternals.h" |
FSharedReferencer & operator=
(
FSharedReferencer const & InSharedReference
)
operator=(FSharedReferencer &&)
Description
Move assignment operator adds no references to the assigned object. If this counter was previously referencing an object, that reference will be released.
| Name | operator= |
| Type | function |
| Header File | /Engine/Source/Runtime/Core/Public/Templates/SharedPointerInternals.h |
| Include Path | #include "Templates/SharedPointerInternals.h" |
FSharedReferencer & operator=
(
FSharedReferencer && InSharedReference
)