Blaze 3.9
blaze::HasExp10< T, typename > Struct Template Reference

Availability of the exp10() operation for the given data types. More...

#include <HasExp10.h>

Inherits HasExp10Helper< T >.

Detailed Description

template<typename T, typename = void>
struct blaze::HasExp10< T, typename >

Availability of the exp10() operation for the given data types.

This type trait provides the information whether the exp10() operation exists for the given data type T (taking the cv-qualifiers into account). In case the operation is available, the value member constant is set to true, the nested type definition Type is TrueType, and the class derives from TrueType. Otherwise value is set to false, Type is FalseType, and the class derives from FalseType.

struct NoExp10 {}; // Definition of a type without the exp10() operation
blaze::HasExp10< DynamicVector<float> >::Type // Results in TrueType
blaze::HasExp10< DynamicMatrix<double> > // Is derived from TrueType
blaze::HasExp10< NoExp10 >::Type // Results in FalseType
blaze::HasExp10< NoExp10 > // Is derived from FalseType
Availability of the exp10() operation for the given data types.
Definition: HasExp10.h:109

The documentation for this struct was generated from the following file: