IsNumericMatrix.h
Go to the documentation of this file.
1 //=================================================================================================
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_TYPETRAITS_ISNUMERICMATRIX_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISNUMERICMATRIX_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
45 #include <blaze/util/mpl/And.h>
47 
48 
49 namespace blaze {
50 
51 //=================================================================================================
52 //
53 // CLASS DEFINITION
54 //
55 //=================================================================================================
56 
57 //*************************************************************************************************
84 template< typename T >
86  : public And< IsMatrix<T>, IsNumeric< UnderlyingElement_<T> > >
87 {};
88 //*************************************************************************************************
89 
90 } // namespace blaze
91 
92 #endif
Header file for the And class template.
Header file for the UnderlyingElement type trait.
Compile time check for numeric matrix types.This type trait tests whether or not the given template p...
Definition: IsNumericMatrix.h:85
Header file for the IsMatrix type trait.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the IsNumeric type trait.
Compile time logical &#39;and&#39; evaluation.The And alias declaration performs at compile time a logical &#39;a...
Definition: And.h:76