35 #ifndef _BLAZE_MATH_TYPETRAITS_ISVECCONJEXPR_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISVECCONJEXPR_H_
43 #include <boost/type_traits/is_base_of.hpp>
63 template<
typename T >
64 struct IsVecConjExprHelper
67 enum { value = boost::is_base_of<VecConjExpr,T>::value && !boost::is_base_of<T,VecConjExpr>::value };
68 typedef typename SelectType<value,TrueType,FalseType>::Type Type;
87 template<
typename T >
93 enum { value = IsVecConjExprHelper<T>::value };
94 typedef typename IsVecConjExprHelper<T>::Type Type;
Header file for the FalseType type/value trait base class.
Header file for the VecConjExpr base class.
Compile time check whether the given type is a vector complex conjugate expression template...
Definition: IsVecConjExpr.h:88
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for the SelectType class template.
Header file for the TrueType type/value trait base class.