diff --git a/Redcraft.Utility/Source/Public/Memory/MemoryOperator.h b/Redcraft.Utility/Source/Public/Memory/MemoryOperator.h index fbf1d95..34e27ed 100644 --- a/Redcraft.Utility/Source/Public/Memory/MemoryOperator.h +++ b/Redcraft.Utility/Source/Public/Memory/MemoryOperator.h @@ -122,9 +122,7 @@ FORCEINLINE void Destruct(ElementType* Element, size_t Count = 1) { while (Count) { - typedef ElementType DestructItemsElementTypeTypedef; - - Element->DestructItemsElementTypeTypedef::~DestructItemsElementTypeTypedef(); + Element->~ElementType(); ++Element; --Count; } diff --git a/Redcraft.Utility/Source/Public/Templates/Any.h b/Redcraft.Utility/Source/Public/Templates/Any.h index be06850..97bf39c 100644 --- a/Redcraft.Utility/Source/Public/Templates/Any.h +++ b/Redcraft.Utility/Source/Public/Templates/Any.h @@ -78,8 +78,7 @@ struct alignas(InlineAlignment) TAny } template requires (!TIsSame::Type, TAny>::Value) && (!TIsTInPlaceType::Type>::Value) - && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value - && TIsConstructible::Type, T&&>::Value + && TIsDestructible::Type>::Value && TIsConstructible::Type, T&&>::Value FORCEINLINE TAny(T&& InValue) : TAny(InPlaceType::Type>, Forward(InValue)) { } @@ -187,8 +186,7 @@ struct alignas(InlineAlignment) TAny } template requires (!TIsSame::Type, TAny>::Value) && (!TIsTInPlaceType::Type>::Value) - && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value - && TIsConstructible::Type, T&&>::Value + && TIsDestructible::Type>::Value && TIsConstructible::Type, T&&>::Value FORCEINLINE TAny& operator=(T&& InValue) { using SelectedType = typename TDecay::Type; @@ -225,22 +223,22 @@ struct alignas(InlineAlignment) TAny template constexpr bool HoldsAlternative() const { return IsValid() ? GetTypeInfo() == typeid(T) : false; } - template requires TIsSame::Type>::Value && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value + template requires TIsDestructible::Type>::Value constexpr T& GetValue() & { checkf(HoldsAlternative(), TEXT("It is an error to call GetValue() on an wrong TAny. Please either check HoldsAlternative() or use Get(DefaultValue) instead.")); return *reinterpret_cast< T*>(GetAllocation()); } - template requires TIsSame::Type>::Value && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value + template requires TIsDestructible::Type>::Value constexpr T&& GetValue() && { checkf(HoldsAlternative(), TEXT("It is an error to call GetValue() on an wrong TAny. Please either check HoldsAlternative() or use Get(DefaultValue) instead.")); return MoveTemp(*reinterpret_cast< T*>(GetAllocation())); } - template requires TIsSame::Type>::Value && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value + template requires TIsDestructible::Type>::Value constexpr const T& GetValue() const& { checkf(HoldsAlternative(), TEXT("It is an error to call GetValue() on an wrong TAny. Please either check HoldsAlternative() or use Get(DefaultValue) instead.")); return *reinterpret_cast(GetAllocation()); } - template requires TIsSame::Type>::Value && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value + template requires TIsDestructible::Type>::Value constexpr const T&& GetValue() const&& { checkf(HoldsAlternative(), TEXT("It is an error to call GetValue() on an wrong TAny. Please either check HoldsAlternative() or use Get(DefaultValue) instead.")); return MoveTemp(*reinterpret_cast(GetAllocation())); } - template requires TIsSame::Type>::Value&& TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value + template requires TIsSame::Type>::Value&& TIsDestructible::Type>::Value constexpr T& Get( T& DefaultValue) & { return HoldsAlternative() ? GetValue() : DefaultValue; } - template requires TIsSame::Type>::Value&& TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value + template requires TIsSame::Type>::Value&& TIsDestructible::Type>::Value constexpr const T& Get(const T& DefaultValue) const& { return HoldsAlternative() ? GetValue() : DefaultValue; } FORCEINLINE void Reset() diff --git a/Redcraft.Utility/Source/Public/Templates/Function.h b/Redcraft.Utility/Source/Public/Templates/Function.h index c74147d..43529a5 100644 --- a/Redcraft.Utility/Source/Public/Templates/Function.h +++ b/Redcraft.Utility/Source/Public/Templates/Function.h @@ -107,10 +107,10 @@ public: FORCEINLINE const type_info& TargetType() const requires (!bIsRef) { return IsValid() ? Storage.GetTypeInfo() : typeid(void); }; - template FORCEINLINE T& Target() & requires (!bIsRef) && TIsSame::Type>::Value && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value { return static_cast< StorageType& >(Storage).template GetValue(); } - template FORCEINLINE T&& Target() && requires (!bIsRef) && TIsSame::Type>::Value && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value { return static_cast< StorageType&&>(Storage).template GetValue(); } - template FORCEINLINE const T& Target() const& requires (!bIsRef) && TIsSame::Type>::Value && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value { return static_cast(Storage).template GetValue(); } - template FORCEINLINE const T&& Target() const&& requires (!bIsRef) && TIsSame::Type>::Value && TIsObject::Type>::Value && (!TIsArray::Type>::Value) && TIsDestructible::Type>::Value { return static_cast(Storage).template GetValue(); } + template FORCEINLINE T& Target() & requires (!bIsRef) && TIsDestructible::Type>::Value { return static_cast< StorageType& >(Storage).template GetValue(); } + template FORCEINLINE T&& Target() && requires (!bIsRef) && TIsDestructible::Type>::Value { return static_cast< StorageType&&>(Storage).template GetValue(); } + template FORCEINLINE const T& Target() const& requires (!bIsRef) && TIsDestructible::Type>::Value { return static_cast(Storage).template GetValue(); } + template FORCEINLINE const T&& Target() const&& requires (!bIsRef) && TIsDestructible::Type>::Value { return static_cast(Storage).template GetValue(); } constexpr void Swap(TFunctionImpl& InValue) requires (!bIsRef) { diff --git a/Redcraft.Utility/Source/Public/TypeTraits/SupportedOperations.h b/Redcraft.Utility/Source/Public/TypeTraits/SupportedOperations.h index 66459a0..7a815e7 100644 --- a/Redcraft.Utility/Source/Public/TypeTraits/SupportedOperations.h +++ b/Redcraft.Utility/Source/Public/TypeTraits/SupportedOperations.h @@ -9,19 +9,28 @@ NAMESPACE_REDCRAFT_BEGIN NAMESPACE_MODULE_BEGIN(Redcraft) NAMESPACE_MODULE_BEGIN(Utility) -template struct TIsDefaultConstructible : TBoolConstant> { }; -template struct TIsCopyConstructible : TBoolConstant> { }; -template struct TIsMoveConstructible : TBoolConstant> { }; -template struct TIsCopyAssignable : TBoolConstant> { }; -template struct TIsMoveAssignable : TBoolConstant> { }; -template struct TIsDestructible : TBoolConstant> { }; -template struct TIsTriviallyDefaultConstructible : TBoolConstant> { }; -template struct TIsTriviallyCopyConstructible : TBoolConstant> { }; -template struct TIsTriviallyMoveConstructible : TBoolConstant> { }; -template struct TIsTriviallyCopyAssignable : TBoolConstant> { }; -template struct TIsTriviallyMoveAssignable : TBoolConstant> { }; -template struct TIsTriviallyDestructible : TBoolConstant> { }; -template struct THasVirtualDestructor : TBoolConstant> { }; +NAMESPACE_PRIVATE_BEGIN + +// Cpp17Destructible requirements +template +struct TIsCpp17Destructible : TBoolConstant && !NAMESPACE_STD::is_array_v && NAMESPACE_STD::is_destructible_v> { }; + +NAMESPACE_PRIVATE_END + +template struct TIsDefaultConstructible : TBoolConstant> { }; +template struct TIsCopyConstructible : TBoolConstant> { }; +template struct TIsMoveConstructible : TBoolConstant> { }; +template struct TIsCopyAssignable : TBoolConstant> { }; +template struct TIsMoveAssignable : TBoolConstant> { }; +template struct TIsDestructible : NAMESPACE_PRIVATE::TIsCpp17Destructible { }; // Use Cpp17Destructible requirements instead of std::is_destructible + +template struct TIsTriviallyDefaultConstructible : TBoolConstant::Value && NAMESPACE_STD::is_trivially_default_constructible_v> { }; +template struct TIsTriviallyCopyConstructible : TBoolConstant::Value && NAMESPACE_STD::is_trivially_copy_constructible_v> { }; +template struct TIsTriviallyMoveConstructible : TBoolConstant::Value && NAMESPACE_STD::is_trivially_move_constructible_v> { }; +template struct TIsTriviallyCopyAssignable : TBoolConstant::Value && NAMESPACE_STD::is_trivially_copy_assignable_v> { }; +template struct TIsTriviallyMoveAssignable : TBoolConstant::Value && NAMESPACE_STD::is_trivially_move_assignable_v> { }; +template struct TIsTriviallyDestructible : TBoolConstant::Value && NAMESPACE_STD::is_trivially_destructible_v> { }; +template struct THasVirtualDestructor : TBoolConstant::Value && NAMESPACE_STD::has_virtual_destructor_v> { }; //template struct TIsNothrowDefaultConstructible; //template struct TIsNothrowCopyConstructible; @@ -30,13 +39,15 @@ template struct THasVirtualDestructor : TBoolConstant struct TIsNothrowMoveAssignable; //template struct TIsNothrowDestructible; -template struct TIsAssignable : TBoolConstant> { }; -template struct TIsTriviallyAssignable : TBoolConstant> { }; +template struct TIsAssignable : TBoolConstant> { }; + +template struct TIsTriviallyAssignable : TBoolConstant::Value && NAMESPACE_STD::is_trivially_assignable_v> { }; //template struct TIsNothrowAssignable; -template struct TIsConstructible : TBoolConstant> { }; -template struct TIsTriviallyConstructible : TBoolConstant> { }; +template struct TIsConstructible : TBoolConstant> { }; + +template struct TIsTriviallyConstructible : TBoolConstant::Value && NAMESPACE_STD::is_trivially_constructible_v> { }; //template struct TIsNothrowConstructible;