35 #ifndef _BLAZE_UTIL_TYPETRAITS_REMOVEALLEXTENTS_H_ 36 #define _BLAZE_UTIL_TYPETRAITS_REMOVEALLEXTENTS_H_ 43 #include <type_traits> 69 template<
typename T >
75 using Type =
typename std::remove_all_extents<T>::type;
95 template<
typename T >
typename RemoveAllExtents< T >::Type RemoveAllExtents_t
Auxiliary alias declaration for the RemoveAllExtents type trait.The RemoveAllExtents_t alias declarat...
Definition: RemoveAllExtents.h:96
Namespace of the Blaze C++ math library.
Definition: Blaze.h:58
Removal of all array extents.The RemoveAllExtents type trait removes all array extents from the given...
Definition: RemoveAllExtents.h:70