Classe remove_all_extents
Torna não matriz, digite de tipo de matriz.
template<class Ty>
struct remove_all_extents;
Parâmetros
- Ty
O tipo de modificar.
Comentários
Uma instância do tipo modificador mantém um modificado-tipo que é o tipo de elemento do tipo matriz Ty com todas as dimensões de matriz removidas, ou Ty Se Ty não é um tipo de matriz.
Exemplo
// std_tr1__type_traits__remove_all_extents.cpp
// compile with: /EHsc
#include <type_traits>
#include <iostream>
int main()
{
std::cout << "remove_all_extents<int> == "
<< typeid(std::tr1::remove_all_extents<int>::type).name()
<< std::endl;
std::cout << "remove_all_extents<int[5]> == "
<< typeid(std::tr1::remove_all_extents<int[5]>::type).name()
<< std::endl;
std::cout << "remove_all_extents<int[5][10]> == "
<< typeid(std::tr1::remove_all_extents<int[5][10]>::type).name()
<< std::endl;
return (0);
}
Requisitos
Cabeçalho:<type_traits>
Namespace: std::tr1