35 #ifndef _BLAZE_MATH_TYPETRAITS_ISUNIFORM_H_ 36 #define _BLAZE_MATH_TYPETRAITS_ISUNIFORM_H_ 59 template<
typename T >
struct IsUniform;
71 struct IsUniformHelper
75 template<
typename T >
77 :
public IsUniform< typename T::ResultType >::Type
103 template<
typename T >
105 :
public IsUniformHelper<T>
115 template<
typename T >
128 template<
typename T >
129 struct IsUniform< volatile T >
130 :
public IsUniform<T>
141 template<
typename T >
142 struct IsUniform< const volatile T >
143 :
public IsUniform<T>
162 template<
typename T >
Header file for the FalseType type/value trait base class.
typename EnableIf< Condition, T >::Type EnableIf_t
Auxiliary type for the EnableIf class template.The EnableIf_t alias declaration provides a convenient...
Definition: EnableIf.h:138
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Header file for the EnableIf class template.
Header file for the IsZero type trait.
constexpr bool IsExpression_v
Auxiliary variable template for the IsExpression type trait.The IsExpression_v variable template prov...
Definition: IsExpression.h:131
constexpr bool IsUniform_v
Auxiliary variable template for the IsUniform type trait.The IsUniform_v variable template provides a...
Definition: IsUniform.h:163
Header file for the IsExpression type trait class.