From ff59698fdc9b4d9d5f6064d045e05d1852ecb1ac Mon Sep 17 00:00:00 2001 From: _Redstone_c_ Date: Sun, 24 Apr 2022 23:08:00 +0800 Subject: [PATCH] feat(templates): add Ref helper function for TReferenceWrapper --- .../Public/Templates/ReferenceWrapper.h | 27 +++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/Redcraft.Utility/Source/Public/Templates/ReferenceWrapper.h b/Redcraft.Utility/Source/Public/Templates/ReferenceWrapper.h index f502631..26eb6ba 100644 --- a/Redcraft.Utility/Source/Public/Templates/ReferenceWrapper.h +++ b/Redcraft.Utility/Source/Public/Templates/ReferenceWrapper.h @@ -40,6 +40,33 @@ private: template TReferenceWrapper(T&) -> TReferenceWrapper; +template +void Ref(const T&&) = delete; + +template +constexpr TReferenceWrapper Ref(T& InValue) +{ + return TReferenceWrapper(InValue); +} + +template +constexpr TReferenceWrapper Ref(TReferenceWrapper InValue) +{ + return Ref(InValue.Get()); +} + +template +constexpr TReferenceWrapper Ref(const T& InValue) +{ + return TReferenceWrapper(InValue); +} + +template +constexpr TReferenceWrapper Ref(TReferenceWrapper InValue) +{ + return Ref(InValue.Get()); +} + template struct TIsTReferenceWrapper : FFalse { }; template struct TIsTReferenceWrapper> : FTrue { };