35#ifndef _BLAZE_MATH_TYPETRAITS_ISCONTIGUOUS_H_
36#define _BLAZE_MATH_TYPETRAITS_ISCONTIGUOUS_H_
109template<
typename T >
110struct IsContiguous< volatile T >
111 :
public IsContiguous<T>
122template<
typename T >
123struct IsContiguous< const volatile T >
124 :
public IsContiguous<T>
143template<
typename T >
Header file for the IntegralConstant class template.
constexpr bool IsContiguous_v
Auxiliary variable template for the IsContiguous type trait.
Definition: IsContiguous.h:144
Generic wrapper for a compile time constant integral value.
Definition: IntegralConstant.h:74
Compile time check for the memory layout of data types.
Definition: IsContiguous.h:87