35 #ifndef _BLAZE_UTIL_CONSTRAINTS_ASSIGNABLE_H_ 36 #define _BLAZE_UTIL_CONSTRAINTS_ASSIGNABLE_H_ 61 #define BLAZE_CONSTRAINT_MUST_BE_COPY_ASSIGNABLE_TYPE(T) \ 62 static_assert( ::blaze::IsCopyAssignable_v<T>, "Non-copy assignable type detected" ) 81 #define BLAZE_CONSTRAINT_MUST_NOT_BE_COPY_ASSIGNABLE_TYPE(T) \ 82 static_assert( !::blaze::IsCopyAssignable_v<T>, "Copy assignable type detected" ) 101 #define BLAZE_CONSTRAINT_MUST_BE_NOTHROW_COPY_ASSIGNABLE_TYPE(T) \ 102 static_assert( ::blaze::IsNothrowCopyAssignable_v<T>, "Non-noexcept copy assignable type detected" ) 121 #define BLAZE_CONSTRAINT_MUST_NOT_BE_NOTHROW_COPY_ASSIGNABLE_TYPE(T) \ 122 static_assert( !::blaze::IsNothrowCopyAssignable_v<T>, "Noexcept copy assignable type detected" ) 141 #define BLAZE_CONSTRAINT_MUST_BE_MOVE_ASSIGNABLE_TYPE(T) \ 142 static_assert( ::blaze::IsMoveAssignable_v<T>, "Non-move assignable type detected" ) 161 #define BLAZE_CONSTRAINT_MUST_NOT_BE_MOVE_ASSIGNABLE_TYPE(T) \ 162 static_assert( !::blaze::IsMoveAssignable_v<T>, "Move assignable type detected" ) 181 #define BLAZE_CONSTRAINT_MUST_BE_NOTHROW_MOVE_ASSIGNABLE_TYPE(T) \ 182 static_assert( ::blaze::IsNothrowMoveAssignable_v<T>, "Non-noexcept move assignable type detected" ) 201 #define BLAZE_CONSTRAINT_MUST_NOT_BE_NOTHROW_MOVE_ASSIGNABLE_TYPE(T) \ 202 static_assert( !::blaze::IsNothrowMoveAssignable_v<T>, "Noexcept move assignable type detected" ) Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the IsAssignable type trait.