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

Compile time check for data types with padding. More...

#include <IsPadded.h>

Inherits blaze::IntegralConstant< T, N >.

Detailed Description

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

Compile time check for data types with padding.

This type trait tests whether the given data type employs or simulates padding such that no special treatment of remainder elements is necessary for vectorized operations on the type. In case the data type is padded, 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::IsPadded< const CompressedVector<int> >::Type // Results in FalseType
Compile time check for data types with padding.
Definition: IsPadded.h:77

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