Blaze  3.6
IsTemporary.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_TYPETRAITS_ISTEMPORARY_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISTEMPORARY_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
47 
48 
49 namespace blaze {
50 
51 //=================================================================================================
52 //
53 // CLASS DEFINITION
54 //
55 //=================================================================================================
56 
57 //*************************************************************************************************
67 template< typename T >
69  : public BoolConstant< !IsReference_v<T> && !IsNumeric_v<T> && !IsExpression_v<T> >
70 {};
71 //*************************************************************************************************
72 
73 
74 //*************************************************************************************************
87 template< typename T >
89 //*************************************************************************************************
90 
91 } // namespace blaze
92 
93 #endif
Compile time check whether the given type is a temporary vector or matrix type.This type trait class ...
Definition: IsTemporary.h:68
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:72
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
constexpr bool IsTemporary_v
Auxiliary variable template for the IsTemporary type trait.The IsTemporary_v variable template provid...
Definition: IsTemporary.h:88
Header file for the IsNumeric type trait.
Header file for the IsReference type trait.
Header file for the IntegralConstant class template.
Header file for the IsExpression type trait class.