remove_all_extents Class
Sprawia, że tablica innych niż typ z typem tablicy.
template<class Ty>
struct remove_all_extents;
Parametry
- Ty
Typ, aby zmodyfikować.
Uwagi
Wystąpienie modyfikator typu posiada modyfikacji typu, który jest typem elementu typu tablicy Ty z wszystkich wymiarów tablicy usunięte, lub Ty Jeśli Ty nie jest typem tablicy.
Przykład
// 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);
}
Wymagania
Nagłówek: <type_traits>
Obszar nazw: std
Zobacz też
Informacje
Inne zasoby
<type_traits> Członkowie