UDocumentation UE5.7 10.02.2026 (Source)
API documentation for Unreal Engine 5.7
ArrowWrapper.h
Go to the documentation of this file.
1// Copyright Epic Games, Inc. All Rights Reserved.
2
3#pragma once
4
6
26template <typename WrappedType>
28{
30 : Value(InValue)
31 {
32 }
33
36 {
37 }
38
39 const WrappedType* operator->() const
40 {
41 return &this->Value;
42 }
43
45};
UE_FORCEINLINE_HINT TSharedRef< CastToType, Mode > StaticCastSharedRef(TSharedRef< CastFromType, Mode > const &InSharedRef)
Definition SharedPointer.h:127
UE_INTRINSIC_CAST UE_REWRITE constexpr std::remove_reference_t< T > && MoveTemp(T &&Obj) noexcept
Definition UnrealTemplate.h:520
Definition ArrowWrapper.h:28
WrappedType Value
Definition ArrowWrapper.h:44
TArrowWrapper(WrappedType &&InValue)
Definition ArrowWrapper.h:34
const WrappedType * operator->() const
Definition ArrowWrapper.h:39
TArrowWrapper(const WrappedType &InValue)
Definition ArrowWrapper.h:29