35 #ifndef _BLAZE_MATH_TYPETRAITS_ISADAPTOR_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISADAPTOR_H_
87 template<
typename T >
106 template<
typename T >
112 typedef typename IsAdaptor<T>::Type Type;
124 template<
typename T >
125 struct IsAdaptor< volatile T > :
public IsAdaptor<T>::Type
129 enum { value = IsAdaptor<T>::value };
130 typedef typename IsAdaptor<T>::Type Type;
142 template<
typename T >
143 struct IsAdaptor< const volatile T > :
public IsAdaptor<T>::Type
147 enum { value = IsAdaptor<T>::value };
148 typedef typename IsAdaptor<T>::Type Type;
Header file for the FalseType type/value trait base class.
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Compile time check for adaptors.This type trait tests whether the given template parameter is an adap...
Definition: IsAdaptor.h:88
boost::false_type FalseType
Type/value traits base class.The FalseType class is used as base class for type traits and value trai...
Definition: FalseType.h:61
Header file for the TrueType type/value trait base class.