35#ifndef _BLAZE_MATH_TYPETRAITS_ISPROXY_H_
36#define _BLAZE_MATH_TYPETRAITS_ISPROXY_H_
61template<
typename PT,
typename RT >
62TrueType isProxy_backend(
const volatile Proxy<PT,RT>* );
95 :
public decltype( isProxy_backend( std::declval<T*>() ) )
105template<
typename T >
126template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsProxy_v
Auxiliary variable template for the IsProxy type trait.
Definition: IsProxy.h:127
BoolConstant< true > TrueType
Type traits base class.
Definition: IntegralConstant.h:132
BoolConstant< false > FalseType
Type/value traits base class.
Definition: IntegralConstant.h:121
Header file for all forward declarations for proxies.
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for proxy types.
Definition: IsProxy.h:96