35#ifndef _BLAZE_MATH_TYPETRAITS_ISADAPTOR_H_
36#define _BLAZE_MATH_TYPETRAITS_ISADAPTOR_H_
111template<
typename T >
112struct IsAdaptor< volatile T >
113 :
public IsAdaptor<T>
124template<
typename T >
125struct IsAdaptor< const volatile T >
126 :
public IsAdaptor<T>
145template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsAdaptor_v
Auxiliary variable template for the IsAdaptor type trait.
Definition: IsAdaptor.h:146
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for adaptors.
Definition: IsAdaptor.h:89