35 #ifndef _BLAZE_MATH_TYPETRAITS_SIZE_H_
36 #define _BLAZE_MATH_TYPETRAITS_SIZE_H_
74 template<
typename T >
85 template<
typename T >
86 struct Size< const T > :
public SizeT< Size<T>::value >
97 template<
typename T >
98 struct Size< volatile T > :
public SizeT< Size<T>::value >
109 template<
typename T >
110 struct Size< const volatile T > :
public SizeT< Size<T>::value >
Header file for the SizeT class template.
Compile time integral constant wrapper for size_t.The SizeT class template represents an integral wra...
Definition: SizeT.h:71
Compile time evaluation of the size of a vector.The Size type trait evaluates the size of the given v...
Definition: Size.h:75
Header file for basic type definitions.