Compartilhar via


Classe remove_all_extents

Cria tipo de não matriz do tipo de matriz.

template<class T>
    struct remove_all_extents;

template<class T>
  using remove_all_extents_t = typename remove_all_extents<T>::type;

Parâmetros

  • T
    O tipo a ser modificado.

Comentários

Uma instância de remove_all_extents<T> mantém um tipo modificado que é o tipo de elemento do tipo de matriz T com todas as dimensões da matriz removidas ou T se T não for um tipo de matriz.

Exemplo

 

#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); 
    } 
 

Requisitos

Cabeçalho: <type_traits>

Namespace: std

Consulte também

Referência

<type_traits>

Classe remove_extent

Outros recursos

<type_traits> Membros