remove_all_extents Class

Faz com que não matriz, digite de tipo de matriz.

template<class Ty>
    struct remove_all_extents;

Parâmetros

  • Ty
    O tipo para modificar.

Comentários

Uma instância do modificador tipo mantém um modificado-tipo que é o tipo de elemento do tipo matriz Ty com todas as dimensões da 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::remove_all_extents<int>::type).name() 
        << std::endl; 
    std::cout << "remove_all_extents<int[5]> == " 
        << typeid(std::remove_all_extents<int[5]>::type).name() 
        << std::endl; 
    std::cout << "remove_all_extents<int[5][10]> == " 
        << typeid(std::remove_all_extents<int[5][10]>::type).name() 
        << std::endl; 
 
    return (0); 
    } 
 

Requisitos

Cabeçalho: <type_traits>

Namespace: std

Consulte também

Referência

<type_traits>

remove_extent Class

Outros recursos

<type_traits> Membros