35 #ifndef _BLAZE_MATH_TYPETRAITS_ISPROXY_H_
36 #define _BLAZE_MATH_TYPETRAITS_ISPROXY_H_
62 template<
typename T >
67 typedef char (&Yes)[1];
68 typedef char (&No) [2];
70 template<
typename PT,
typename RT >
71 static Yes test(
const Proxy<PT,RT>& );
73 static No test( ... );
78 static constexpr
bool value = (
sizeof( test( std::declval< RemoveCV_<T> >() ) ) ==
sizeof( Yes ) );
109 template<
typename T >
Header file for the RemoveCV type trait.
Generic wrapper for a compile time constant integral value.The IntegralConstant class template repres...
Definition: IntegralConstant.h:71
Compile time check for proxy types.This type trait tests whether or not the given template parameter ...
Definition: IsProxy.h:110
Namespace of the Blaze C++ math library.
Definition: Blaze.h:57
Header file for all forward declarations for proxies.
Header file for the IntegralConstant class template.