Blaze 3.9
blaze::HasMin< T1, T2, typename > Struct Template Reference

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

#include <HasMin.h>

Inherits HasMinHelper< T1, T2 >.

Detailed Description

template<typename T1, typename T2, typename = void>
struct blaze::HasMin< T1, T2, typename >

Availability of a min() operation for the given data types.

This type trait provides the information whether a binary min() operation exists for the two given data types T1 and T2 (taking the cv-qualifiers into account). In case a binary min() 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.

blaze::HasMin< DynamicVector<int>, DynamicVector<int> > // Is derived from TrueType
blaze::HasMin< complex<float>, complex<float> >::Type // Results in FalseType
blaze::HasMin< DynamicMatrix<int>, DynamicVector<int> > // Is derived from FalseType
Complex data type of the Blaze library.
Availability of a min() operation for the given data types.
Definition: HasMin.h:108

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