35 #ifndef _BLAZE_UTIL_TYPETRAITS_ISASSIGNABLE_H_ 36 #define _BLAZE_UTIL_TYPETRAITS_ISASSIGNABLE_H_ 43 #include <type_traits> 70 template<
typename T,
typename U >
90 template<
typename T,
typename U >
119 template<
typename T,
typename U >
121 :
public BoolConstant< std::is_nothrow_assignable<T,U>::value >
139 template<
typename T,
typename U >
167 template<
typename T >
169 :
public BoolConstant< std::is_copy_assignable<T>::value >
187 template<
typename T >
216 template<
typename T >
218 :
public BoolConstant< std::is_nothrow_copy_assignable<T>::value >
236 template<
typename T >
264 template<
typename T >
266 :
public BoolConstant< std::is_move_assignable<T>::value >
284 template<
typename T >
313 template<
typename T >
315 :
public BoolConstant< std::is_nothrow_move_assignable<T>::value >
333 template<
typename T >
constexpr bool IsNothrowAssignable_v
Auxiliary variable template for the IsNothrowAssignable type trait.The IsNothrowAssignable_v variable...
Definition: IsAssignable.h:140
constexpr bool IsAssignable_v
Auxiliary variable template for the IsAssignable type trait.The IsAssignable_v variable template prov...
Definition: IsAssignable.h:91
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:72
Compile time type check.The IsMoveAssignable type trait tests whether the expression.
Definition: IsAssignable.h:265
constexpr bool IsNothrowMoveAssignable_v
Auxiliary variable template for the IsNothrowMoveAssignable type trait.The IsNothrowMoveAssignable_v ...
Definition: IsAssignable.h:334
Compile time type check.The IsCopyAssignable type trait tests whether the expression.
Definition: IsAssignable.h:168
Compile time type check.The IsNothrowMoveAssignable type trait tests whether the expression.
Definition: IsAssignable.h:314
constexpr bool IsMoveAssignable_v
Auxiliary variable template for the IsMoveAssignable type trait.The IsMoveAssignable_v variable templ...
Definition: IsAssignable.h:285
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
constexpr bool IsNothrowCopyAssignable_v
Auxiliary variable template for the IsNothrowCopyAssignable type trait.The IsNothrowCopyAssignable_v ...
Definition: IsAssignable.h:237
Compile time type check.The IsNothrowAssignable type trait tests whether the expression.
Definition: IsAssignable.h:120
constexpr bool IsCopyAssignable_v
Auxiliary variable template for the IsCopyAssignable type trait.The IsCopyAssignable_v variable templ...
Definition: IsAssignable.h:188
Compile time type check.The IsAssignable type trait tests whether the expression.
Definition: IsAssignable.h:71
Header file for the IntegralConstant class template.
Compile time type check.The IsNothrowCopyAssignable type trait tests whether the expression.
Definition: IsAssignable.h:217