Classe remove_all_extents
Crea un tipo non matrice da un tipo matrice.
Sintassi
template <class T>
struct remove_all_extents;
template <class T>
using remove_all_extents_t = typename remove_all_extents<T>::type;
Parametri
T
Tipo da modificare.
Osservazioni:
Un'istanza di remove_all_extents<T>
contiene un tipo modificato che è il tipo di elemento del tipo matrice T con tutte le dimensioni della matrice rimosse oppure T se T non è un tipo di matrice.
Esempio
#include <type_traits>
#include <iostream>
int main()
{
std::cout << "remove_all_extents<int> == "
<< typeid(std::remove_all_extents_t<int>).name()
<< std::endl;
std::cout << "remove_all_extents_t<int[5]> == "
<< typeid(std::remove_all_extents_t<int[5]>).name()
<< std::endl;
std::cout << "remove_all_extents_t<int[5][10]> == "
<< typeid(std::remove_all_extents_t<int[5][10]>).name()
<< std::endl;
return (0);
}
Requisiti
Intestazione:<type_traits>
Spazio dei nomi: std