Blaze 3.9
blaze::IsSIMDPack< T > Struct Template Reference

Compile time check for SIMD data types. More...

#include <IsSIMDPack.h>

Inherits decltype isSIMDPack_backend std::declval< T * >.

Detailed Description

template<typename T>
struct blaze::IsSIMDPack< T >

Compile time check for SIMD data types.

This type trait tests whether the given data type is a Blaze SIMD packed data type. The following types are considered valid SIMD packed types:

In case the data type is a SIMD data type, 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. Examples:

blaze::IsSIMDPack< volatile SIMDint > // Is derived from TrueType
blaze::IsSIMDPack< volatile complex<double> > // Is derived from FalseType
Compile time check for SIMD data types.
Definition: IsSIMDPack.h:126

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