35#ifndef _BLAZE_MATH_TYPETRAITS_ISVIEW_H_
36#define _BLAZE_MATH_TYPETRAITS_ISVIEW_H_
62TrueType isView_backend(
const volatile View<U>* );
100template<
typename T >
102 :
public decltype( isView_backend( std::declval<T*>() ) )
112template<
typename T >
133template<
typename T >
Header file for the IntegralConstant class template.
Header file for the View base class.
constexpr bool IsView_v
Auxiliary variable template for the IsView type trait.
Definition: IsView.h:134
BoolConstant< true > TrueType
Type traits base class.
Definition: IntegralConstant.h:132
BoolConstant< false > FalseType
Type/value traits base class.
Definition: IntegralConstant.h:121
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for views.
Definition: IsView.h:103